/[mdap]/network-setup.sh
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /network-setup.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 62 - (show annotations)
Sat Nov 17 00:12:12 2007 UTC (16 years, 4 months ago) by dpavlin
File MIME type: application/x-sh
File size: 595 byte(s)
 r85@brr:  root | 2007-11-17 01:11:48 +0100
 tweak config

1 #!/bin/sh
2
3 if=eth1
4
5 echo "setting network on $if"
6 #sudo ifconfig $if down || exit
7 sudo killall udhcpd
8 sudo rm etc/udhcpd.leases
9 sudo touch etc/udhcpd.leases
10 sleep 1
11 sudo ifconfig $if 10.0.0.100 up
12 #sudo ifconfig $if:192 192.168.1.241 netmask 255.255.255.240 up
13 sudo route add -net 224.0.0.0 netmask 240.0.0.0 dev $if
14 netstat -rn
15 pid=`pidof dhcpd`
16 if [ -z "$pid" ] ; then
17 echo "starting bootp server"
18 sudo /usr/sbin/udhcpd etc/udhcpd.conf
19 fi
20 echo "starting tftp server"
21 pid=`pidof in.tftpd`
22 test ! -z "$pid" && sudo kill $pid
23 sudo /usr/sbin/in.tftpd -l -a 10.0.0.100 -s /srv/tftp -B 1468 -v -v

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26