ipfw expects text.

This commit is contained in:
JohnHay 2021-12-20 09:20:32 +02:00
parent f247853f39
commit 0cfee0ba84

View File

@ -186,7 +186,7 @@ class Method(BaseMethod):
ipfw('add', '1', 'fwd', '127.0.0.1,%d' % port, ipfw('add', '1', 'fwd', '127.0.0.1,%d' % port,
'tcp', 'tcp',
'from', 'any', 'to', 'table(126)', 'from', 'any', 'to', 'table(126)',
'not', 'ipttl', ttl, 'keep-state', 'setup') 'not', 'ipttl', '%d' % ttl, 'keep-state', 'setup')
ipfw_noexit('table', '124', 'flush') ipfw_noexit('table', '124', 'flush')
dnscount = 0 dnscount = 0
@ -197,11 +197,11 @@ class Method(BaseMethod):
ipfw('add', '1', 'fwd', '127.0.0.1,%d' % dnsport, ipfw('add', '1', 'fwd', '127.0.0.1,%d' % dnsport,
'udp', 'udp',
'from', 'any', 'to', 'table(124)', 'from', 'any', 'to', 'table(124)',
'not', 'ipttl', ttl) 'not', 'ipttl', '%d' % ttl)
ipfw('add', '1', 'allow', ipfw('add', '1', 'allow',
'udp', 'udp',
'from', 'any', 'to', 'any', 'from', 'any', 'to', 'any',
'ipttl', ttl) 'ipttl', '%d' % ttl)
if subnets: if subnets:
# create new subnet entries # create new subnet entries