Difference between revisions of "Bacula Linux IP6Tables Rules"

From Tech Wiki
Jump to navigation Jump to search
(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...")
 
(No difference)

Latest revision as of 10:08, 28 April 2016

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