Index: tools/gformat.py
===================================================================
--- tools/gformat.py	(revision 13884)
+++ tools/gformat.py	(revision 13886)
@@ -1190,9 +1190,9 @@
 # INFO: {{ global_rdr_rules|count }} global_rdr_rules active on this node.
 {% for protocol, src_port,dest_ip,dest_port,comment in global_rdr_rules -%}
-rdr on $ext_if inet proto {{ protocol }} from any to $ext_if port {{ src_port }} tag SRV -> {{ "-%14s"|format(dest_ip) }} port {{ "%4s"|format(dest_port) }} # {{ comment }}
+rdr on $ext_if inet proto {{ protocol }} from any to $ext_if port {{ src_port }} tag SRV -> {{ "%-14s"|format(dest_ip) }} port {{ "%4s"|format(dest_port) }} # {{ comment }}
 {% endfor -%}
 # INFO: {{ rdr_rules|count }} node specific rdr_rules defined.
 {% for protocol, src_port,dest_ip,dest_port,comment in rdr_rules -%}
-rdr on $ext_if inet proto {{ protocol }} from any to $ext_if port {{ src_port }} tag SRV -> {{ dest_ip }} port {{ dest_port }} # {{ comment }}
+rdr on $ext_if inet proto {{ protocol }} from any to $ext_if port {{ src_port }} tag SRV -> {{ "%-14s"|format(dest_ip) }} port {{ "%4s"|format(dest_port) }} # {{ comment }}
 {% endfor -%}
 """).render(datadump)
