mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-17 03:41:07 +02:00
misc init.d cleanups
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1123 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
195b21ed59
commit
8e47fb9ee7
@ -1,5 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. /etc/functions.sh
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
start|restart)
|
start|restart)
|
||||||
ifup lan
|
ifup lan
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
${FAILSAFE:+return}
|
|
||||||
. /etc/functions.sh
|
. /etc/functions.sh
|
||||||
WAN=$(nvram get wan_ifname)
|
WAN=$(nvram get wan_ifname)
|
||||||
LAN=$(nvram get lan_ifname)
|
LAN=$(nvram get lan_ifname)
|
||||||
@ -17,18 +16,6 @@ iptables -N forwarding_rule
|
|||||||
iptables -t nat -N prerouting_rule
|
iptables -t nat -N prerouting_rule
|
||||||
iptables -t nat -N postrouting_rule
|
iptables -t nat -N postrouting_rule
|
||||||
|
|
||||||
### Allow SSH from WAN
|
|
||||||
# iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 22 -j ACCEPT
|
|
||||||
# iptables -A input_rule -i $WAN -p tcp --dport 22 -j ACCEPT
|
|
||||||
|
|
||||||
### Port forwarding
|
|
||||||
# iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 22 -j DNAT --to 192.168.1.2
|
|
||||||
# iptables -A forwarding_rule -i $WAN -p tcp --dport 22 -d 192.168.1.2 -j ACCEPT
|
|
||||||
|
|
||||||
### DMZ (should be placed after port forwarding / accept rules)
|
|
||||||
# iptables -t nat -A prerouting_rule -i $WAN -j DNAT --to 192.168.1.2
|
|
||||||
# iptables -A forwarding_rule -i $WAN -d 192.168.1.2 -j ACCEPT
|
|
||||||
|
|
||||||
### INPUT
|
### INPUT
|
||||||
### (connections with the router as destination)
|
### (connections with the router as destination)
|
||||||
|
|
||||||
@ -94,3 +81,6 @@ iptables -t nat -N postrouting_rule
|
|||||||
iptables -t nat -A PREROUTING -j prerouting_rule
|
iptables -t nat -A PREROUTING -j prerouting_rule
|
||||||
iptables -t nat -A POSTROUTING -j postrouting_rule
|
iptables -t nat -A POSTROUTING -j postrouting_rule
|
||||||
iptables -t nat -A POSTROUTING -o $WAN -j MASQUERADE
|
iptables -t nat -A POSTROUTING -o $WAN -j MASQUERADE
|
||||||
|
|
||||||
|
## USER RULES
|
||||||
|
. /etc/firewall.user
|
||||||
|
@ -22,4 +22,4 @@ udhcpc -n -q -R -s /dev/zero -i $ifname >&- || {
|
|||||||
|
|
||||||
args="-K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h"
|
args="-K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h"
|
||||||
}
|
}
|
||||||
/usr/sbin/dnsmasq ${args}
|
dnsmasq ${args}
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
/usr/sbin/httpd -p 80 -h /www -r WRT54G Router
|
httpd -p 80 -h /www -r WRT54G Router
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
/usr/sbin/telnetd -l /bin/login
|
telnetd -l /bin/login
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
syslogd -C 16
|
syslogd -C 16
|
||||||
klogd
|
klogd
|
||||||
|
${FAILSAFE:+telnetd -l /bin/login; ifup lan; exit}
|
||||||
|
|
||||||
for i in /etc/init.d/S*; do
|
for i in /etc/init.d/S*; do
|
||||||
$i start 2>&1
|
$i start 2>&1
|
||||||
done | logger -s -p 6 -t ''
|
done | logger -s -p 6 -t ''
|
||||||
|
@ -55,9 +55,9 @@
|
|||||||
${DEBUG:-eval} "udhcpc -R -i $if ${ip:+-r $ip} -b -p $pidfile &"
|
${DEBUG:-eval} "udhcpc -R -i $if ${ip:+-r $ip} -b -p $pidfile &"
|
||||||
;;
|
;;
|
||||||
none|"")
|
none|"")
|
||||||
# pppoe is handled by /etc/init.d/S50pppoe
|
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
[ -x "/sbin/ifup.${if_proto}" ] && { $DEBUG /sbin/ifup.${if_proto} $*; exit; }
|
||||||
echo "### ifup $type: ignored ${type}_proto=\"$if_proto\" (not supported)"
|
echo "### ifup $type: ignored ${type}_proto=\"$if_proto\" (not supported)"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user