Andrea Zagli scrisse: > > * rimuovendo l'interfaccia virtuale e mettendo i molteplici > > indirizzi direttamente su eth0 (a meno che tu non stia facendo > > anche tagging vlan) > > che cosa intendi? posso assegnare piu' indirizzi ip a un'interfaccia > senza crearne di virtuali?
Certamente, puoi farlo con `ip addr add`:
root@galatea:~# ip addr show eth0
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state
DOWN qlen 1000
link/ether [...] brd ff:ff:ff:ff:ff:ff
root@galatea:~# ip addr add 192.168.55.55/24 dev eth0
root@galatea:~# ip addr show eth0
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state
DOWN qlen 1000
link/ether [...] brd ff:ff:ff:ff:ff:ff
inet 192.168.55.55/24 scope global eth0
root@galatea:~# ip addr add 192.168.88.99/24 dev eth0
root@galatea:~# ip addr show eth0
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state
DOWN qlen 1000
link/ether [...] brd ff:ff:ff:ff:ff:ff
inet 192.168.55.55/24 scope global eth0
inet 192.168.88.99/24 scope global eth0
Non conosco quale sia di preciso la sintassi per /etc/network/interfaces, ma
mal che vada puoi metterlo nel target di "up".
> > * incollando anche l'output di `ip route` e `netstat -peanut` per
> > vedere cosa sta succedendo :)
>
> 10.0.0.0/8 dev eth0 proto kernel scope link src 10.3.0.32
> default via 10.3.0.1 dev eth0
Come vedi, non hai route che escano da eth0:1.
Per di più, per tutti gli host in 10/8 (e immagino che gli slave siano lì)
hai una hint esplicita ad usare 10.3.0.32 come sorgente.
> (netstat -peanut e' troppo lungo...)
Con `| grep named` è tuo amico :)
Ciao, Luca
--
.''`. | ~<[ Luca BRUNO ~ (kaeso) ]>~
: :' : | Email: lucab (AT) debian.org ~ Debian Developer
`. `'` | GPG Key ID: 0x3BFB9FB3 ~ Free Software supporter
`- | HAM-radio callsign: IZ1WGT ~ Networking sorcerer
signature.asc
Description: PGP signature

