Skip to main content

Thread: eth1 is disabled


i have gigabyte g1.sniper 3 onboard intel(eth0) , killer nic(eth1)'s (e1000e , alx drivers). patched killer nic driver post , able show in ifconfig it's own ip.

working on bonding 2 802.3ad managed switch , able see info in /proc/net/bonding/bond0 indicating switch liked bond. having issues pinging inside network started hacking /etc/network/interfaces file , lost all.

lshw -c network shows eth1(alx driver) disabled , has same mac eth0(e1000e driver). briefly had eth's ip'd after "udevadm trigger; service udev reload" , reboot, mac's still same.

ideas on how eth1 behaving again?

lshw -c network:
code:
  *-network                        description: ethernet interface         product: 82579v gigabit network connection         vendor: intel corporation         physical id: 19         bus info: pci@0000:00:19.0         logical name: eth0         version: 04         serial: 90:2b:34:58:4b:25         size: 1gbit/s         capacity: 1gbit/s         width: 32 bits         clock: 33mhz         capabilities: bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation         configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=2.0.0-k duplex=full firmware=0.13-4 ip=192.168.49.226 latency=0 multicast=yes port=twisted pair speed=1gbit/s         resources: irq:48 memory:f7e00000-f7e1ffff memory:f7e39000-f7e39fff ioport:f080(size=32)    *-network         description: wireless interface         product: ar9462 wireless network adapter         vendor: atheros communications inc.         physical id: 0         bus info: pci@0000:07:00.0         logical name: wlan0         version: 01         serial: 74:e5:43:d3:55:19         width: 64 bits         clock: 33mhz         capabilities: bus_master cap_list rom ethernet physical wireless         configuration: broadcast=yes driver=ath9k driverversion=3.5.0-23-generic firmware=n/a ip=192.168.49.17 latency=0 multicast=yes wireless=ieee 802.11abgn         resources: irq:18 memory:f7b00000-f7b7ffff memory:f7b80000-f7b8ffff    *-network disabled         description: ethernet interface         product: atheros communications inc.         vendor: atheros communications inc.         physical id: 0         bus info: pci@0000:0a:00.0         logical name: rename3         version: 10         serial: 90:2b:34:58:4b:25         size: 1gbit/s         capacity: 1gbit/s         width: 64 bits         clock: 33mhz         capabilities: bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation         configuration: autonegotiation=on broadcast=yes driver=alx duplex=full firmware=alx latency=0 multicast=yes port=twisted pair speed=1gbit/s         resources: irq:49 memory:f7900000-f793ffff ioport:c000(size=128)
dmesg | grep -e ath -e atheros -e alx
code:
[   10.735187] qualcomm atheros(r) ar813x/ar815x/ar816x pci-e ethernet network driver  [   10.735226] alx 0000:0a:00.0: dma 64-bit addresses  [   10.735262] alx 0000:0a:00.0: (unregistered net_device): hw flags = 0x415  [   10.735671] alx 0000:0a:00.0: (unregistered net_device): reset phy, pws = 1, az = 0, ptp = 0  [   10.736845] alx 0000:0a:00.0: (unregistered net_device): speed = 0x2f, autoneg = 1  [   10.737865] alx 0000:0a:00.0: irq 49 msi/msi-x  [   10.737967] alx: atheros gigabit network connection  [   13.857724] ath: eeprom regdomain: 0x6a  [   13.857725] ath: eeprom indicates should expect direct regpair map  [   13.857727] ath: country alpha2 being used: 00  [   13.857728] ath: regpair used: 0x6a  [   13.859866] ieee80211 phy0: selected rate control algorithm 'ath9k_rate_control'  [   13.860018] registered led device: ath9k-phy0  [   13.860022] ieee80211 phy0: atheros ar9462 rev:2 mem=0xf8b00000, irq=18
cat /etc/udev/rules.d/70-persistent-net.rules
code:
# pci device 0x1969:/sys/devices/pci0000:00/0000:00:1c.6/0000:0a:00.0 (alx)  subsystem=="net", action=="add", drivers=="?*", attr{address}=="90:2b:34:58:4b:25", attr{dev_id}=="0x0", attr{type}=="1", kernel=="eth*", name="eth1"    # pci device 0x168c:/sys/devices/pci0000:00/0000:00:1c.2/0000:07:00.0 (ath9k)  subsystem=="net", action=="add", drivers=="?*", attr{address}=="74:e5:43:d3:55:19", attr{dev_id}=="0x0", attr{type}=="1", kernel=="wlan*", name="wlan0"    # pci device 0x8086:/sys/devices/pci0000:00/0000:00:19.0 (e1000e)  subsystem=="net", action=="add", drivers=="?*", attr{address}=="90:2b:34:58:4b:25", attr{dev_id}=="0x0", attr{type}=="1", kernel=="eth*", name="eth0"
unbonded /etc/network/interfaces:
code:
auto lo  iface lo inet loopback    # primary network interface  auto eth0  iface eth0 inet dhcp    auto eth1  iface eth1 inet static  	address 192.168.49.16  	netmask 255.255.255.0  	network 192.168.49.0  	broadcast 192.168.49.255  	gateway 192.168.49.1    auto wlan0  iface wlan0 inet static  	address 192.168.49.17  	netmask 255.255.255.0  	network 192.168.49.0  	broadcast 192.168.49.255  	gateway 192.168.49.1
bonded /etc/network/interfaces:
code:
auto lo  iface lo inet loopback    # primary network interface  #bond0  auto eth0  iface eth0 inet manual  bond-master bond0  auto eth1  iface eth1 inet manual  bond-master bond0    auto bond0  iface bond0 inet static  	address 192.168.49.15  	netmask 255.255.255.0  	network 192.168.49.0  	broadcast 192.168.49.255  	gateway 192.168.49.1  bond-mode 802.3ad  bond-miimon 100  bond-slaves none  bond-lacp-rate 1    auto wlan0  iface wlan0 inet static  	address 192.168.49.17  	netmask 255.255.255.0  	network 192.168.49.0  	broadcast 192.168.49.255  	gateway 192.168.49.1



Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [ubuntu] eth1 is disabled


Ubuntu

Comments

Popular posts from this blog

Some mp4 files not displaying correctly (CS6)

Thread: Samba is not authenticating with LDAP