Bacula Linux IP6Tables Rules

From Tech Wiki
Revision as of 10:08, 28 April 2016 by Adam.birds (talk | contribs) (Created page with "'''IP6tables blocking connection''' Add in a rule to accept the connections on 9102 in case it's restarted for any reason <pre> ip6tables -I INPUT -p tcp --dport 9102 -j ACCE...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

IP6tables blocking connection

Add in a rule to accept the connections on 9102 in case it's restarted for any reason

ip6tables -I INPUT -p tcp --dport 9102 -j ACCEPT -m comment --comment "Backups"
ip6tables -I OUTPUT -p tcp --dport 9103 -j ACCEPT -m comment --comment "Backups"
service ip6tables save