mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-29 11:46:28 +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
|
||||
. /etc/functions.sh
|
||||
case "$1" in
|
||||
start|restart)
|
||||
ifup lan
|
||||
|
@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
${FAILSAFE:+return}
|
||||
. /etc/functions.sh
|
||||
WAN=$(nvram get wan_ifname)
|
||||
LAN=$(nvram get lan_ifname)
|
||||
@ -17,18 +16,6 @@ iptables -N forwarding_rule
|
||||
iptables -t nat -N prerouting_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
|
||||
### (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 POSTROUTING -j postrouting_rule
|
||||
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"
|
||||
}
|
||||
/usr/sbin/dnsmasq ${args}
|
||||
dnsmasq ${args}
|
||||
|
@ -1,2 +1,2 @@
|
||||
#!/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
|
||||
/usr/sbin/telnetd -l /bin/login
|
||||
telnetd -l /bin/login
|
||||
|
@ -1,6 +1,8 @@
|
||||
#!/bin/sh
|
||||
syslogd -C 16
|
||||
klogd
|
||||
${FAILSAFE:+telnetd -l /bin/login; ifup lan; exit}
|
||||
|
||||
for i in /etc/init.d/S*; do
|
||||
$i start 2>&1
|
||||
done | logger -s -p 6 -t ''
|
||||
|
@ -55,9 +55,9 @@
|
||||
${DEBUG:-eval} "udhcpc -R -i $if ${ip:+-r $ip} -b -p $pidfile &"
|
||||
;;
|
||||
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)"
|
||||
;;
|
||||
esac
|
||||
|
Loading…
Reference in New Issue
Block a user