j’ai suivi le proto de lefinnois.net/wp/index.php/2 … uelle-kvm/ pour ma config reseau debian virtuelle et lors du lancement, j’ai :
"eth1: received packet with own address as source address
eth0: received packet with own address as source address"
et l’ensemble du réseau qui bourre.
j’ai créé un bridge br0 avec eth1 manual et tap0 manual :
[code]/etc/network/interfaces
auto lo eth0 eth1 tap0 br0
iface lo inet loopback
iface eth0 inet dhcp
iface tap10 inet manual
pre-up tunctl -b -u fab -t tap0
pre-up ifconfig tap0 up
post-down tunctl -d tap0
iface br0 inet static
bridge_ports eth1 tap0
bridge_maxwait 0
address 192.168.13.2
netmask 255.255.255.0
network 192.168.13.0
broadcast 192.168.13.255
gateway 192.168.13.1
iface eth1 inet manual[/code]
[code]ifconfig
br0 Link encap:Ethernet HWaddr 00:1c:f0:11:f9:b5
inet adr:192.168.13.2 Bcast:192.168.13.255 Masque:255.255.255.0
adr inet6: fe80::21c:f0ff:fe11:f9b5/64 Scope:Lien
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:140 errors:0 dropped:0 overruns:0 frame:0
TX packets:15 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:0
RX bytes:9502 (9.2 KiB) TX bytes:1296 (1.2 KiB)
eth0 Link encap:Ethernet HWaddr 00:1d:7d:96:12:0a
inet adr:192.168.12.2 Bcast:192.168.12.255 Masque:255.255.255.0
adr inet6: fe80::21d:7dff:fe96:120a/64 Scope:Lien
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:7255734 errors:0 dropped:0 overruns:0 frame:0
TX packets:7718242 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:1000
RX bytes:1134320040 (1.0 GiB) TX bytes:1218088732 (1.1 GiB)
Interruption:252 Adresse de base:0x6000
eth1 Link encap:Ethernet HWaddr 00:1c:f0:11:f9:b5
adr inet6: fe80::21c:f0ff:fe11:f9b5/64 Scope:Lien
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:150 errors:0 dropped:0 overruns:0 frame:0
TX packets:20 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:1000
RX bytes:12768 (12.4 KiB) TX bytes:2242 (2.1 KiB)
Interruption:18
lo Link encap:Boucle locale
inet adr:127.0.0.1 Masque:255.0.0.0
adr inet6: ::1/128 Scope:Hôte
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:30783 errors:0 dropped:0 overruns:0 frame:0
TX packets:30783 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:0
RX bytes:2558081 (2.4 MiB) TX bytes:2558081 (2.4 MiB)
tap0 Link encap:Ethernet HWaddr 00:ff:63:9d:04:f4
adr inet6: fe80::2ff:63ff:fe9d:4f4/64 Scope:Lien
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:63 errors:0 dropped:0 overruns:0 frame:0
TX packets:14862411 errors:0 dropped:447 overruns:0 carrier:0
collisions:0 lg file transmission:500
RX bytes:10360 (10.1 KiB) TX bytes:2322135110 (2.1 GiB)[/code]
voici la commande: kvm -hda /services/debian.img -m 256 -k fr -net nic -net tap,ifname=tap0 -vnc :0 &
Où est le souci?