Les Forums

Les Forums

Les forums sont fermés. Ils restent présent pour consultation et archivage.
Vous pouvez désormais poser vos questions directement dans les commentaires en bas de chaque page du site.
Alors n'hésitez pas à participer

un interface qui ne transmet pas les paquets ?

Bonjour,

Juste inscrit sur ce forum, je viens pour un problème spécifique au routage que on a pu résoudre sur le forum réseau de ubuntu-fr

Je vais faire un bonding avec deux connexion internet en passant par deux vpn sur chaque interface

Je travaille sur un Ubuntu-server

D'un coté, j'ai eth0 qui est branché sur la Livebox d'Orange en DMZ, en effet je n'ai pas pu la faire sauter pour faire en bridge tout en gardant la TV (mais c'est une question de DHCP ue je n'ai su résoudre ...) l'ip de eth0 est 192.168.1.2 et la livebox est sur 192.168.1.1

de l'autre coté j'ai l'interface vlan300 (qui passe par eth1 pou arrivé sur un switch manageable) et de l'autre coté il y a un accès ADSL OVH en bridge (l'accès ce fait par IPoE par DHCP)

Mon but premier est de faire passer tout le traffic du lan vers internet par eth0, sauf une seul ip 176.31.176.12

voici différente commande et leurs resultats.

[code:1:f81b28a268]jewome62@homeServer:$ traceroute -n 176.31.176.12
traceroute to 176.31.176.12 (176.31.176.12), 30 hops max, 60 byte packets
1 109.190.83.253 11.757 ms 12.445 ms 12.992 ms
2 * * *
3 * * *
4 * * *
5 * * *
6 * * *
7 * * *
8 * * *
9 * * *
10 * * *
11 * * *
12 * * *
13 * * *
14 * * *
15 * * *
16 * * *
17 * * *
18 * * *
19 * * *
20 * * *
21 * * *
22 * * *
23 * * *
24 * * *
25 * * *
26 * * *
27 * * *
28 * * *
29 * * *
30 * * *
[/code:1:f81b28a268]

[code:1:f81b28a268]jewome62@homeServer:~$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
10.8.0.1 10.8.0.5 255.255.255.255 UGH 0 0 0 tun0
10.8.0.5 0.0.0.0 255.255.255.255 UH 0 0 0 tun0
10.8.0.5 0.0.0.0 255.255.255.255 UH 0 0 0 tun1
109.190.80.0 0.0.0.0 255.255.252.0 U 0 0 0 vlan300
176.31.176.12 109.190.80.254 255.255.255.255 UGH 0 0 0 vlan300
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 lan
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
[/code:1:f81b28a268]

[code:1:f81b28a268]jewome62@homeServer:~$ sudo traceroute 176.31.176.12 -i eth0
[sudo] password for jewome62:
traceroute to 176.31.176.12 (176.31.176.12), 30 hops max, 60 byte packets
1 192.168.1.1 (192.168.1.1) 1.969 ms 2.790 ms 3.542 ms
2 80.10.122.73 (80.10.122.73) 19.295 ms 19.655 ms 20.058 ms
3 10.123.70.74 (10.123.70.74) 20.549 ms 20.926 ms 21.291 ms
4 ae43-0.nrlil202.Lille.francetelecom.net (193.252.100.125) 21.816 ms 22.196 ms 22.679 ms
5 lag-1.nolil602.Lille.francetelecom.net (193.252.100.82) 23.241 ms 23.578 ms 23.976 ms
6 rbx-2-6k.fr.eu (94.23.122.225) 26.501 ms * *
[/code:1:f81b28a268]

[code:1:f81b28a268]jewome62@homeServer:~$ sudo traceroute 176.31.176.12 -i vlan300
traceroute to 176.31.176.12 (176.31.176.12), 30 hops max, 60 byte packets
1 253-83-190-109.dsl.ovh.fr (109.190.83.253) 5.793 ms 6.387 ms 7.370 ms
2 * * *
3 * * *
4 * * *
5 * * *
...
[/code:1:f81b28a268]

[code:1:f81b28a268]jewome62@homeServer:~$ ip route show
default via 192.168.1.1 dev eth0
10.8.0.1 via 10.8.0.5 dev tun0
10.8.0.5 dev tun0 proto kernel scope link src 10.8.0.6
10.8.0.5 dev tun1 proto kernel scope link src 10.8.0.6
109.190.80.0/22 dev vlan300 proto kernel scope link src 109.190.80.74
176.31.176.12 via 109.190.80.254 dev vlan300
192.168.0.0/24 dev lan proto kernel scope link src 192.168.0.1
192.168.1.0/24 dev eth0 proto kernel scope link src 192.168.1.2
[/code:1:f81b28a268]

[code:1:f81b28a268]jewome62@homeServer:~$ cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.2
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 208.67.222.222 208.67.220.220

auto eth1
iface eth1 inet manual

#Net Ovh
auto vlan300
iface vlan300 inet dhcp
vlan-raw-device eth1
post-up route add 176.31.176.12 gw 109.190.80.254
iface vlan300 inet6 dhcp
vlan-raw-device eth1

iface bond0 inet static
address 172.26.0.2
netmask 255.255.255.252
bond-slaves tun0 tun1
bond_mode 802.3ad

############### Reseau Local ########################
#Reseau Filiaire
auto vlan200
iface vlan200 inet manual
vlan-raw-device eth1

#Reseau Wifi
auto wlan0
iface wlan0 inet manual

#Reseau local global
auto lan
iface lan inet static
address 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
pre-up iptables-restore < /etc/iptables.rules
post-up hostapd /etc/hostapd/hostapd.conf
post-up upnpd eth0 lan
post-down iptables-save > /etc/iptables.rules
pre-down killall upnpd
pre-down killall hostapd
bridge-ports wlan0 vlan200
iface lan inet6 auto
pre-up ip6tables-restore < /etc/iptables6.rules
post-down ip6tables-save > /etc/iptables6.rules
bridge-ports wlan0 vlan200
[/code:1:f81b28a268]

[code:1:f81b28a268]jewome62@homeServer:~$ ifconfig
eth0 Link encap:Ethernet HWaddr 90:2b:34:5d:f0:bd
inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::922b:34ff:fe5d:f0bd/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:27169169 errors:0 dropped:0 overruns:0 frame:0
TX packets:19937425 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:31320019949 (31.3 GB) TX bytes:8736551046 (8.7 GB)

eth1 Link encap:Ethernet HWaddr 90:2b:34:5d:f0:bf
inet6 addr: fe80::922b:34ff:fe5d:f0bf/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:8318117 errors:0 dropped:0 overruns:0 frame:0
TX packets:12451161 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:604819370 (604.8 MB) TX bytes:16387646749 (16.3 GB)

lan Link encap:Ethernet HWaddr 84:a6:c8:08:33:88
inet addr:192.168.0.1 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::922b:34ff:fe5d:f0bf/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:14982472 errors:0 dropped:0 overruns:0 frame:0
TX packets:18585449 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:8159280083 (8.1 GB) TX bytes:19979106490 (19.9 GB)

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:94 errors:0 dropped:0 overruns:0 frame:0
TX packets:94 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:9716 (9.7 KB) TX bytes:9716 (9.7 KB)

mon.wlan0 Link encap:UNSPEC HWaddr 84-A6-C8-08-33-88-3A-30-00-00-00-00-00-00-00-00
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:15237345 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:3176883515 (3.1 GB) TX bytes:0 (0.0 B)

tun0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet addr:10.8.0.6 P-t-P:10.8.0.5 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

tun1 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet addr:10.8.0.6 P-t-P:10.8.0.5 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

vlan200 Link encap:Ethernet HWaddr 90:2b:34:5d:f0:bf
inet6 addr: fe80::922b:34ff:fe5d:f0bf/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:6580115 errors:0 dropped:0 overruns:0 frame:0
TX packets:12421535 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:367342429 (367.3 MB) TX bytes:16384794548 (16.3 GB)

vlan300 Link encap:Ethernet HWaddr 90:2b:34:5d:f0:bf
inet addr:109.190.80.74 Bcast:109.190.83.255 Mask:255.255.252.0
inet6 addr: fe80::922b:34ff:fe5d:f0bf/64 Scope:Link
inet6 addr: 2001:41d0:fde0::11f7/64 Scope:Global
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1738002 errors:0 dropped:8 overruns:0 frame:0
TX packets:29622 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:87750835 (87.7 MB) TX bytes:2851793 (2.8 MB)

wlan0 Link encap:Ethernet HWaddr 84:a6:c8:08:33:88
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:8514773 errors:0 dropped:0 overruns:0 frame:0
TX packets:6530462 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:7983849703 (7.9 GB) TX bytes:3783271007 (3.7 GB)
[/code:1:f81b28a268]