blob: e2ab185bbf0d22bc985b42e2662a39fb32cc07c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
export TZ=$(nvram get tz)
insmod diag
echo "0x01" > /proc/sys/diag
echo "3" >/proc/sys/kernel/panic
# networking
insmod et
insmod wl
ifconfig lo 127.0.0.1 up
# eth0 and eth1 are shared, must set eth0 as promisc
ifconfig eth0 promisc
ifconfig eth1 promisc
/etc/networking.sh
# now lets set up a basic set of rules to do ip masquerade
/etc/firewall.sh
# now lets start some basic services
/usr/sbin/telnetd
/usr/sbin/httpd -p 80 -h /www -r WRT54G Router
/usr/sbin/udhcpd /etc/udhcpd.conf
|