HIP:TS7400: Difference between revisions

From Earlham CS Department
Jump to navigation Jump to search
Copelco (talk | contribs)
No edit summary
Copelco (talk | contribs)
Line 1: Line 1:
== Board Configuration ==
== Board Configuration ==
* Boot to debian on power up
* Boot to debian on power up
* I'm having trouble acquiring a DHCP lease. I believe it has something to do with the DHCP configuration, but for now I'm manually assigning an IP address.
/etc/network/interfaces:
iface eth0 inet static
address 192.168.1.138
network 192.168.1.1
netmask 255.255.255.0
broadcast 192.168.1.255
Add default route
route add default gw 192.168.1.1 eth0
Edit rc#.d to run, because ifup -a only brings up interfaces assigned with auto
ifup eth0


== Links ==
== Links ==
* [[http://tech.groups.yahoo.com/group/ts-7000/ TS-7000 Yahoo User Group]]
* [[http://tech.groups.yahoo.com/group/ts-7000/ TS-7000 Yahoo User Group]]
** Mailing list available
** Mailing list available

Revision as of 17:24, 18 March 2007

Board Configuration

  • Boot to debian on power up
  • I'm having trouble acquiring a DHCP lease. I believe it has something to do with the DHCP configuration, but for now I'm manually assigning an IP address.

/etc/network/interfaces:

iface eth0 inet static
address 192.168.1.138
network 192.168.1.1
netmask 255.255.255.0
broadcast 192.168.1.255

Add default route

route add default gw 192.168.1.1 eth0

Edit rc#.d to run, because ifup -a only brings up interfaces assigned with auto

ifup eth0