mercury ~#cat /etc/network/interfaces
#The loopback network interface
auto lo
iface lo inet loopback
#The primary network interface
auto eth0
iface eth0 inet static
address 69.141.108.162
netmask 255.255.252.0
network 69.141.108.0
broadcast 69.141.111.255
gateway 69.141.108.1
#dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 68.87.64.196
dns-search scholasticscout.com
mercury ~# route -n
Kernel IP Routing Table
Destination Gateway Genmask Flags Metric Ref Use Iface
69.141.108.0 0.0.0.0 255.255.252.0 U 0 0 0 eth0
0.0.0.0 69.141.108.1 0.0.0.0 UG 0 0 0 eth0
Notes:
- This is a server I am setting up at home, so right now the connection is through my home ISP - cable modem using DHCP (Comcast).
- Because of the setup I have at home :-( I can only have one of my computers (the server I'm trying to set up or the desktop I'm posting this from)
running at once. So if you ping me right now, my desktop will respond.
|