I installed Server 14.04 and for the life of me, cannot see what I've done wrong.
I am using a static IP from Comcast and have my server plugged directly into the SMC modem.
Here's what I got:
ifconfig -a
route -n
netstat -r
cat /etc/network/interfaces
cat /etc/hosts
cat /etc/resolv.conf
ip addr
ip route
If I try to ping the gateway: 173.164.126.174
I have 5 static IPs from Comcast in the 173.164.126.174/29 block.
What have I possibly missed? I have double checked and triple checked the physical cable to the modem and I checked that switch controls on the SMC were opened as well.
Edit: Added ip commands and responses
I am using a static IP from Comcast and have my server plugged directly into the SMC modem.
Here's what I got:
ifconfig -a
Code:
eth0 Link encap:Ethernet HWaddr 00:00:00:00:00:00
inet addr:173.164.126.170 Bcast:173.164.126.175 Mask:255.255.255.248
inet6 addr: fe80::214:22ff:fe22:5191/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:246 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:63 (63.0 B) TX bytes:0 (0.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:567 errors:0 dropped:0 overruns:0 frame:0
TX packets:567 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:143991 (143.9 KB) TX bytes:143991 (143.9 KB)
Code:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 173.164.126.174 0.0.0.0 UG 0 0 0 eth0
173.164.126.168 0.0.0.0 255.255.255.248 U 0 0 0 eth0
Code:
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
default 173.164.126.174 0.0.0.0 UG 0 0 0 eth0
173.164.126.168 * 255.255.255.248 U 0 0 0 eth0
Code:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 173.164.126.170/29
gateway 173.164.126.174
dns-search fartinginelevators.com
dns-nameservers 75.75.75.75 75.75.76.76
Code:
127.0.0.1 localhost
173.164.126.170 fartinginelevators.com fartinginelevators
Code:
nameserver 75.75.75.75
nameserver 75.75.76.76
search fartinginelevators.com
Code:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:00:00:0:00:00 brd ff:ff:ff:ff:ff:ff
inet 173.164.126.170/29 brd 173.164.126.175 scope global eth0
valid_lft forever preferred_lft forever
inet6 fe80::214:22ff:fe22:5191/64 scope link
valid_lft forever preferred_lft forever
Code:
default via 173.164.126.174 dev eth0
173.164.126.168/29 dev eth0 proto kernel scope link src 173.164.126.170
Code:
PING 173.164.126.174 (173.164.126.174) 56(84) bytes of data.
From 173.164.126.170 icmp_seq=1 Destination Host Unreachable
What have I possibly missed? I have double checked and triple checked the physical cable to the modem and I checked that switch controls on the SMC were opened as well.
Edit: Added ip commands and responses