Projet

Général

Profil

Routage » Historique » Version 68

Matthieu Herrb, 06/06/2019 08:07
clarifie et supprime les infos coté h7

1 1 Laurent GUERBY
{{>toc}}
2 1 Laurent GUERBY
3 6 Mehdi Abaakouk
h1. Routage
4 1 Laurent GUERBY
5 53 Matthieu Herrb
h2. Configuration
6 1 Laurent GUERBY
7 2 Laurent GUERBY
Coté Adhérent-e :
8 1 Laurent GUERBY
9 68 Matthieu Herrb
remplacer IP par l'adresse IPv4 allouée à la machine.
10 68 Matthieu Herrb
11 1 Laurent GUERBY
<pre>
12 1 Laurent GUERBY
# IPv4 Adherent
13 1 Laurent GUERBY
ip addr add IP/32 dev eth0
14 1 Laurent GUERBY
ip route add default via 91.224.148.0 dev eth0 onlink
15 1 Laurent GUERBY
16 1 Laurent GUERBY
# IPv6 adherent
17 1 Laurent GUERBY
ip -6 addr add fe80::XX:YY/64 dev eth0
18 1 Laurent GUERBY
ip -6 route add default via fe80::31 dev eth0
19 1 Laurent GUERBY
ip -6 addr add IP/NN...
20 1 Laurent GUERBY
</pre>
21 1 Laurent GUERBY
22 1 Laurent GUERBY
23 1 Laurent GUERBY
24 6 Mehdi Abaakouk
h2. Adressage
25 1 Laurent GUERBY
26 55 Matthieu Herrb
HH est la conversion en hexadécimal de DDD
27 47 Laurent GUERBY
28 55 Matthieu Herrb
|_. IPv4 |_.Préfixe v6 |_.Link local v6 |_. Origine v4 |
29 55 Matthieu Herrb
|91.224.148.DDD | 2a03.7220.8080.HH00::/56 | fe80::80:HH | PI tetaneutral.net |
30 55 Matthieu Herrb
|91.224.149.DDD | 2a03.7220.8081.HH00::/56 | fe80::81:HH | PI tetaneutral.net |
31 55 Matthieu Herrb
|89.234.156.DDD | 2a03.7220.8083.HH00::/56 | fe80::83:HH | PA opdop |
32 55 Matthieu Herrb
|89.234.157.DDD | 2a03.7220.8084.HH00::/56 | fe80::84:HH | PA opdop |
33 55 Matthieu Herrb
|185.119.168.DDD | 2a03.7220.8085.HH00::/56 | fe80::85:HH | PA tetaneutral.net |
34 55 Matthieu Herrb
|185.119.169.DDD | 2a03.7220.8086.HH00::/56 | fe80::86:HH | PA tetaneutral.net |
35 55 Matthieu Herrb
|185.119.170.DDD | 2a03.7220.8087.HH00::/56 | fe80::87:HH | PA tetaneutral.net |
36 55 Matthieu Herrb
|185.119.171.DDD | 2a03.7220.8088.HH00::/56 | fe80::88:HH | PA tetaneutral.net |
37 2 Laurent GUERBY
38 66 Matthieu Herrb
h2. Sur VM ou machine hébergée
39 2 Laurent GUERBY
40 2 Laurent GUERBY
<pre>
41 2 Laurent GUERBY
# cat /etc/network/interfaces
42 2 Laurent GUERBY
auto lo
43 2 Laurent GUERBY
iface lo inet loopback
44 2 Laurent GUERBY
auto eth0
45 2 Laurent GUERBY
iface eth0 inet6 static
46 2 Laurent GUERBY
    pre-up /sbin/sysctl -w net.ipv6.conf.eth0.accept_ra=0
47 2 Laurent GUERBY
    pre-up /sbin/sysctl -w net.ipv6.conf.eth0.autoconf=0
48 2 Laurent GUERBY
    up ip addr add fe80::YY:XX/64 dev eth0
49 47 Laurent GUERBY
    address 2a03:7220:80YY:XX00::1
50 2 Laurent GUERBY
    netmask 56
51 1 Laurent GUERBY
    gateway fe80::31
52 1 Laurent GUERBY
53 1 Laurent GUERBY
iface eth0 inet manual
54 1 Laurent GUERBY
    up ip link set eth0 up
55 1 Laurent GUERBY
    down ip link set eth0 down
56 1 Laurent GUERBY
    pre-up /sbin/sysctl -w net.ipv6.conf.eth0.accept_ra=0
57 1 Laurent GUERBY
    pre-up /sbin/sysctl -w net.ipv6.conf.eth0.autoconf=0
58 1 Laurent GUERBY
    up ip addr add 91.224.148.DDD/32 dev eth0
59 1 Laurent GUERBY
    up ip route add 91.224.148.0/32 dev eth0
60 1 Laurent GUERBY
    up ip route add default via 91.224.148.0
61 1 Laurent GUERBY
    down ip route flush dev eth0
62 1 Laurent GUERBY
    down ip addr flush dev eth0
63 2 Laurent GUERBY
</pre>
64 53 Matthieu Herrb
65 67 Matthieu Herrb
h2. Autres systèmes d'exploitation
66 30 yannick deroche
67 30 yannick deroche
h3. pfsense
68 30 yannick deroche
69 30 yannick deroche
http://blog.magiksys.net/pfsense-firewall-default-gateway-different-subnet
70 30 yannick deroche
71 65 Matthieu Herrb
Ça se configure via le shell de la console pfSense
72 65 Matthieu Herrb
C'est l'option "-link" à rajouter. Pour spécifier que c'est directement accessible via l'interface configurée.
73 1 Laurent GUERBY
74 45 yannick deroche
EN PREMIER LIEU, IL FAUT EFFACER TOUTES SES ROUTES PAR DEFAUT (en shell, option 8)
75 45 yannick deroche
<pre>
76 45 yannick deroche
ifconfig em0 91.224.XXX.YYY 255.255.255.255 (remplacer em0 par son nom d'interface WAN)
77 45 yannick deroche
</pre>
78 30 yannick deroche
79 1 Laurent GUERBY
Il faut figer son interface WAN en shell: (option 8)
80 30 yannick deroche
81 30 yannick deroche
<pre>
82 45 yannick deroche
route del default
83 30 yannick deroche
</pre>
84 1 Laurent GUERBY
85 30 yannick deroche
Il faut ensuite ajouter le chemin d'accès à la GW, car avec une @IP en /32, la GW est "unreachable":
86 30 yannick deroche
87 30 yannick deroche
<pre>
88 45 yannick deroche
route add -net 91.224.148.0/32 -link -iface em0 (remplacer em0 par son nom d'interface WAN)
89 30 yannick deroche
</pre>
90 30 yannick deroche
91 30 yannick deroche
Il faut enfin définir sa GW par défaut:
92 30 yannick deroche
93 30 yannick deroche
<pre>
94 30 yannick deroche
route add default 91.224.148.0
95 30 yannick deroche
</pre>
96 30 yannick deroche
97 30 yannick deroche
NE PLUS MODIFIER LES PARAMETRES RESEAUX DE L'INTERFACE WAN PAR LA CONSOLE OU LA WEB-UI (uniquement en shell)
98 30 yannick deroche
99 30 yannick deroche
Si vous aller dans la web UI puis dans "diagnostique>routage", vous devriez voir votre oeuvre.
100 35 Matthieu Herrb
101 35 Matthieu Herrb
h3. OpenBSD
102 35 Matthieu Herrb
103 51 Matthieu Herrb
_<if>_ représente le nom de l'interface à configurer.
104 48 Matthieu Herrb
105 58 Matthieu Herrb
Pour IPv4 il faut ajouter la route explicite (/32) vers le routeur dans @/etc/hostname.<if>@:
106 51 Matthieu Herrb
107 1 Laurent GUERBY
<pre>
108 1 Laurent GUERBY
inet 91.224.149.DDD 255.255.255.255 NONE
109 58 Matthieu Herrb
inet6 2a03:7220:80XX:HH00::1 64
110 58 Matthieu Herrb
inet6 alias fe80::XX:HH
111 1 Laurent GUERBY
! route add 91.224.148.0/32 -link -iface <if>
112 51 Matthieu Herrb
</pre>
113 51 Matthieu Herrb
114 58 Matthieu Herrb
et dans @/etc/mygate@ :
115 51 Matthieu Herrb
<pre>
116 51 Matthieu Herrb
91.224.148.0
117 58 Matthieu Herrb
fe80::31%<if>
118 51 Matthieu Herrb
</pre>
119 46 Aymeric APLU
120 46 Aymeric APLU
h3. CentOS/RHEL
121 46 Aymeric APLU
122 46 Aymeric APLU
Modif IPv4 :
123 46 Aymeric APLU
124 46 Aymeric APLU
Dans : /etc/sysconfig/network-scripts/ifcfg-eth0 
125 46 Aymeric APLU
126 46 Aymeric APLU
<pre>
127 46 Aymeric APLU
NETMASK=255.255.255.255
128 46 Aymeric APLU
IPADDR=91.224.149.XXX
129 46 Aymeric APLU
</pre>
130 46 Aymeric APLU
131 46 Aymeric APLU
Dans : /etc/sysconfig/network-scripts/route-eth0 
132 46 Aymeric APLU
<pre>
133 46 Aymeric APLU
default via 91.224.148.0 dev eth0 onlink
134 46 Aymeric APLU
</pre>
135 46 Aymeric APLU
136 46 Aymeric APLU
h3. Windows (on ne sait jamais :-D)
137 46 Aymeric APLU
138 46 Aymeric APLU
<pre>
139 46 Aymeric APLU
route -p add GATEWAY mask 255.255.255.255 0.0.0.0 if INTERFACENUMBER
140 46 Aymeric APLU
route -p add 0.0.0.0 mask 0.0.0.0 GATEWAY
141 46 Aymeric APLU
</pre>