1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-17 09:51:06 +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:
mbm 2005-05-30 23:46:18 +00:00
parent 195b21ed59
commit 8e47fb9ee7
7 changed files with 60 additions and 69 deletions

View File

@ -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

View File

@ -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

View File

@ -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}

View File

@ -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

View File

@ -1,2 +1,2 @@
#!/bin/sh #!/bin/sh
/usr/sbin/telnetd -l /bin/login telnetd -l /bin/login

View File

@ -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 ''

View File

@ -1,63 +1,63 @@
#!/bin/ash #!/bin/ash
. /etc/functions.sh . /etc/functions.sh
type=$1 type=$1
debug "### ifup $type ###" debug "### ifup $type ###"
if=$(nvram get ${type}_ifname) if=$(nvram get ${type}_ifname)
if [ "${if%%[0-9]}" = "ppp" ]; then if [ "${if%%[0-9]}" = "ppp" ]; then
if=$(nvram get pppoe_ifname) if=$(nvram get pppoe_ifname)
fi fi
if_valid $if || return if_valid $if || return
mac=$(nvram get ${type}_hwaddr) mac=$(nvram get ${type}_hwaddr)
$DEBUG ifconfig $if down 2>&- $DEBUG ifconfig $if down 2>&-
if [ "${if%%[0-9]}" = "br" ]; then if [ "${if%%[0-9]}" = "br" ]; then
stp=$(nvram get ${type}_stp) stp=$(nvram get ${type}_stp)
$DEBUG brctl delbr $if 2>&- $DEBUG brctl delbr $if 2>&-
$DEBUG brctl addbr $if $DEBUG brctl addbr $if
$DEBUG brctl setfd $if 0 $DEBUG brctl setfd $if 0
$DEBUG brctl stp $if ${stp:-0} $DEBUG brctl stp $if ${stp:-0}
for sif in $(nvram get ${type}_ifnames); do { for sif in $(nvram get ${type}_ifnames); do {
if_valid $sif || continue if_valid $sif || continue
${mac:+$DEBUG ifconfig $sif down hw ether $mac} ${mac:+$DEBUG ifconfig $sif down hw ether $mac}
$DEBUG ifconfig $sif 0.0.0.0 up $DEBUG ifconfig $sif 0.0.0.0 up
$DEBUG brctl addif $if $sif $DEBUG brctl addif $if $sif
} done } done
else else
${mac:+$DEBUG ifconfig $if down hw ether $mac} ${mac:+$DEBUG ifconfig $if down hw ether $mac}
fi fi
if_proto=$(nvram get ${type}_proto) if_proto=$(nvram get ${type}_proto)
case "$if_proto" in case "$if_proto" in
static) static)
ip=$(nvram get ${type}_ipaddr) ip=$(nvram get ${type}_ipaddr)
netmask=$(nvram get ${type}_netmask) netmask=$(nvram get ${type}_netmask)
gateway=$(nvram get ${type}_gateway) gateway=$(nvram get ${type}_gateway)
$DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up $DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
${gateway:+$DEBUG route add default gw $gateway} ${gateway:+$DEBUG route add default gw $gateway}
[ -f /etc/resolv.conf ] && return [ -f /etc/resolv.conf ] && return
debug "# --- creating /etc/resolv.conf ---" debug "# --- creating /etc/resolv.conf ---"
for dns in $(nvram get ${type}_dns); do { for dns in $(nvram get ${type}_dns); do {
echo "nameserver $dns" >> /etc/resolv.conf echo "nameserver $dns" >> /etc/resolv.conf
} done } done
;; ;;
dhcp) dhcp)
ip=$(nvram get ${type}_ipaddr) ip=$(nvram get ${type}_ipaddr)
pidfile=/tmp/dhcp-${type}.pid pidfile=/tmp/dhcp-${type}.pid
if [ -f $pidfile ]; then if [ -f $pidfile ]; then
$DEBUG kill $(cat $pidfile) $DEBUG kill $(cat $pidfile)
fi fi
${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