> I don't understand how to have a second IP address on the same
> interface.
> I have hear some sound about aliasing...
> I have searched but not trieve exactly hot to do, and a real example.
>
> If somebody knows...
>
> I have already 192.168.73.254/24 on this NIC, but I want also
> 44.151.100.254/24.

Additional to what the others said, this is how you can config it
automatically by editing the /etc/network/interfaces file:

auto eth0
iface eth0 inet static
        address 192.168.73.254
        masklen 24
        up ip addr add 44.151.100.254/24 dev eth0 label eth0:public

You can the address the 192. address with eth0 and the 44. address with
eth0:public. The label is optional but sometimes handy

Regards
Alex



-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
------------------------------------------------------------------------
leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html

Reply via email to