summaryrefslogtreecommitdiff
path: root/init-iptables-firewall
blob: a7f246d18c3d5c98ba2e3693d39aa2e855df1bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/bash

conffile="/etc/sysconfig/iptables"

iptables -L | egrep -q '427|svrloc'
if [ $? -ne 0 ]; then
    iptables -I INPUT 4 -p udp --sport 427 -j ACCEPT
    iptables-save >$conffile
fi

iptables -L | egrep -q '5353|mdns'
if [ $? -ne 0 ]; then
    iptables -I INPUT 4 -p udp --sport 5353 -j ACCEPT
    iptables-save >$conffile
fi

exit 0