lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 2 Jun 2014 17:35:54 -0700
From:	Stephen Hemminger <stephen@...workplumber.org>
To:	CLOSE Dave <Dave.Close@...thalesgroup.com>
Cc:	"netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: Re: Trying to ping from a subinterface.

On Mon, 2 Jun 2014 13:47:06 -0700
CLOSE Dave <Dave.Close@...thalesgroup.com> wrote:

> On Fedora 20 x86_64.
> 
> According to "man ping", ping should work from a subinterface specifying
> either the interface name or its address:
> 
> > -I interface
> >    interface is either an address, or an interface name.  If inter‐
> >    face is an address, it sets source address to  specified  inter‐
> >    face address.  If interface in an interface name, it sets source
> >    interface to specified interface.
> 
> I've got a subinterface and I'm trying to ping from it.
> 
> > # ifconfig eth3:sub1
> > eth3:sub1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
> >        inet 172.17.30.143  netmask 255.255.254.0  broadcast 172.17.31.255
> >        ether 90:e2:ba:34:46:41  txqueuelen 1000  (Ethernet)
> >        device memory 0xdc7e0000-dc800000
> 
> If I ping from the address, it works as specified. If I specify the
> interface name instead, I see:
> 
> > # ping -I eth3:sub1 172.17.30.1
> > ping: SO_BINDTODEVICE: Invalid argument
> 
> Investigating a little deeper:
> 
> > # strace ping -I eth3:sub1 172.17.30.1
> > execve("/usr/bin/ping", ["ping", "-I", "eth3:sub1", "172.17.30.1"], [/* 38 vars */]) = 0
> > ...
> > setsockopt(4, SOL_SOCKET, SO_BINDTODEVICE, "eth3:sub1\0", 13) = -1 ENODEV (No such device)
> > ...
> > +++ exited with 2 +++
> 
> Any thoughts?

Interface aliases (sub interfaces) aren't real interfaces in Linux.
They are a deprecated way of doing multiple addresses on the same device.
Aliases aren't real devices, they don't behave like devices, and they
only are useful with ancient tools like ifconfig.

Don't use them unless you have to deal with systems older than 10 years.

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists