Unable to connect to the network

I'm running 10.3-RELEASE on a Dell rack mount server.

1. rc.conf
Code:
hostname="neocoilss04"
ifconfig_nfe0="inet 192.168.1.213 netmask 255.255.255.0"
defaultrouter="192.168.1.1"
sshd_enable="YES"
ntpd_enable="YES"
dumpdev="AUTO"
zfs_enable="YES"

2. loader.conf
Code:
kern.geom.label.gptid.enable="0"
zfs_load="YES"
if_nfe_load="YES"

3. dmesg|grep nfe0
Code:
nfe0: <NVIDIA nForce MCP55 Networking Adapter> port 0x3088-0x308f mem 0xc4043000-0xc405fff,0xc40418ff,0xc4041400-0xc404140f irq 11 at device 8.0 on pci0
miibus0: <MII bus> on nfe0
nfe0: Using defaults for TSO: 65518/35/2048
nfe0: Ethernet address: 00:1f:d0:18:8b:dc
nfe0: link state changed to DOWN
nfe0: link state changed to UP

4. ifconfig nfe0
Code:
nfe0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
        options=c219b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,TSO4,WOL_MAGIC,VLAN_HWTSO,LINKSTATE>
        ether 00:1f:d0:18:8b:dc
        inet 192.168.1.213 netmask 0xffffff00 broadcast 192.168.1.255
        nd6 options=29<PERFORMMUD,IFDISABLED,AUTO_LINKLOCAL>
        media: Ethernet autoselect (1000baseT <full-duplex>)
        status: active

5. ping -c3 192.168.1.1
Code:
PING 192.168.1.1 (192.168.1.1): 56 data bytes

--- 192.168.1.1 ping statistics ---
3 packets tramsmitted, 0 packets received, 100.0% packet loss

6. dhclient nfe0
Code:
DHCPDISCOVER on nfe0 to 255.255.255.255 port 67 interval 4
DHCPDISCOVER on nfe0 to 255.255.255.255 port 67 interval 4
DHCPDISCOVER on nfe0 to 255.255.255.255 port 67 interval 9
DHCPDISCOVER on nfe0 to 255.255.255.255 port 67 interval 12
DHCPDISCOVER on nfe0 to 255.255.255.255 port 67 interval 8
DHCPDISCOVER on nfe0 to 255.255.255.255 port 67 interval 15
DHCPDISCOVER on nfe0 to 255.255.255.255 port 67 interval 9
No DHCPOFFERS received.
No working leases in persistent database - sleeping.

7. tcpdump -tlni nfe0
4116


I'm at a loss as to why the routing is not working. The NIC is configured, cables are plugged in, link lights are flashing, tcpdump sees packets on the wire. Any help would be greatly appreciated.
 

Attachments

  • capture_7.jpg
    capture_7.jpg
    89.2 KB · Views: 549
ping -c3 192.168.1.213
Code:
PING 192.168.1.213 (192.168.1.213): 56 data bytes
64 bytes from 192.168.1.213: icmp_seq=0 ttl=64 time=0.043 ms
64 bytes from 192.168.1.213: icmp_seq=1 ttl=64 time=0.020 ms
64 bytes from 192.168.1.213: icmp_seq=2 ttl=64 time=0.021 ms

--- 192.168.1.213 ping statistics ---
3 packets tramsmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 0.020/0.028/0.043/0.011 ms
 
netstat -nr
Code:
Routing tables

Internet:
Destination          Gateway          Flags          Netif Expire
default              192.168.1.1      UGS            nfe0
127.0.0.1            link#4           UH              lo0
192.168.1.0/24       link#1           U              nfe0
192.168.1.213        link#1           UHS             lo0
 
The reason why is that there's also traffic visible from a couple of 10.1.0.X addresses. But perhaps those machines are incorrectly configured and are leaking traffic out the wrong interface.
 
Back
Top