Hi all, I''m getting this error while trying to bring up my eth1 (is not a wireless card, is a Broadcom NetXtreme II BCM5708 Gigabit Ethernet) Error for wireless request "Set Encode" (8B2A) : SET failed on device eth1 : No such device. SIOCGFFLAGS: No such device Failed to bring up eth1. Anyone knows why is trying to setup a Gigabit ethernet as a wireless card? My /etc/sysconfig/network-scripts/ifcfg-eth1 is: DEVICE=eth1 ONBOOT=yes NETMASK=255.255.255.0 IPADDR=172.16.1.148 GATEWAY=172.16.1.1 TYPE=Ethernet Thanks! Jordi -- ...................................................................... __ / / Jordi Prats C E / S / C A Dept. de Sistemes /_/ Centre de Supercomputació de Catalunya Gran Capità, 2-4 (Edifici Nexus) · 08034 Barcelona T. 93 205 6464 · F. 93 205 6979 · jprats@cesca.es ......................................................................
Eduardo Habkost
2007-Sep-17 15:00 UTC
Re: [Fedora-xen] SET failed on device eth0 ; No such device
On Thu, Sep 13, 2007 at 11:43:04AM +0200, Jordi Prats wrote:> Hi all, > I''m getting this error while trying to bring up my eth1 (is not a > wireless card, is a Broadcom NetXtreme II BCM5708 Gigabit Ethernet) > > Error for wireless request "Set Encode" (8B2A) : > SET failed on device eth1 : No such device. > SIOCGFFLAGS: No such device > Failed to bring up eth1.By looking at the ifup scripts, it seems that the real problem is why iwconfig is reporting "No such device" instead of "no wireless extensions". Is eth1 appearing on ''ip link show'' and ''ifconfig -a'' output? Is it a xen bridge set up by the Xen scripts, or a normal network interface? -- Eduardo
Jordi Prats
2007-Sep-18 09:44 UTC
Re: [Fedora-xen] SET failed on device eth0 ; No such device
Hi, I suspect it''s something related to use multiple network devices. I have this script to setup two bridges, if I disable it all works fine. Anyone? Thank you ! #!/bin/bash #JPC - per crear les dues interficies - 2006 12 22 dir=$(dirname "$0") . "$dir/xen-script-common.sh" . "$dir/xen-network-common.sh" findCommand "$@" case "$command" in start) vifnum=0 bridge=servei netdev=eth0 /etc/xen/scripts/network-bridge start vifnum=1 bridge=dades netdev=eth1 /etc/xen/scripts/network-bridge start ;; stop) vifnum=0 bridge=servei netdev=eth0 /etc/xen/scripts/network-bridge stop vifnum=1 bridge=dades netdev=eth1 /etc/xen/scripts/network-bridge stop ;; status) vifnum=0 bridge=servei netdev=eth0 /etc/xen/scripts/network-bridge status vifnum=1 bridge=dades netdev=eth1 /etc/xen/scripts/network-bridge status ;; *) echo "Unknown command: $command" >&2 echo ''Valid commands are: start, stop, status'' >&2 exit 1 esac Eduardo Habkost wrote:> On Thu, Sep 13, 2007 at 11:43:04AM +0200, Jordi Prats wrote: > >> Hi all, >> I''m getting this error while trying to bring up my eth1 (is not a >> wireless card, is a Broadcom NetXtreme II BCM5708 Gigabit Ethernet) >> >> Error for wireless request "Set Encode" (8B2A) : >> SET failed on device eth1 : No such device. >> SIOCGFFLAGS: No such device >> Failed to bring up eth1. >> > > By looking at the ifup scripts, it seems that the real problem is > why iwconfig is reporting "No such device" instead of "no wireless > extensions". Is eth1 appearing on ''ip link show'' and ''ifconfig -a'' output? > > Is it a xen bridge set up by the Xen scripts, or a normal network > interface? > >-- ...................................................................... __ / / Jordi Prats C E / S / C A Dept. de Sistemes /_/ Centre de Supercomputació de Catalunya Gran Capità, 2-4 (Edifici Nexus) · 08034 Barcelona T. 93 205 6464 · F. 93 205 6979 · jprats@cesca.es ......................................................................