<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog sur les technologies réseau et sécurité &#187; dynamic</title>
	<atom:link href="http://bmigette.fr/tag/dynamic/feed/" rel="self" type="application/rss+xml" />
	<link>http://bmigette.fr</link>
	<description>Blog de Bastien Migette sur les technologies réseau et sécurité, particulièrement cisco.</description>
	<lastBuildDate>Mon, 21 Nov 2011 22:12:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Easy VPN Server Avec DVTI (Dynamic Vpn Tunnel Interfaces)</title>
		<link>http://bmigette.fr/2009/03/03/easy-vpn-server-avec-dvti-dynamic-vpn-tunnel-interfaces/</link>
		<comments>http://bmigette.fr/2009/03/03/easy-vpn-server-avec-dvti-dynamic-vpn-tunnel-interfaces/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 16:01:07 +0000</pubDate>
		<dc:creator>Bastien Migette</dc:creator>
				<category><![CDATA[CCSP]]></category>
		<category><![CDATA[Sécurité réseau]]></category>
		<category><![CDATA[SNRS]]></category>
		<category><![CDATA[DVTI]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[easy vpn]]></category>
		<category><![CDATA[ezvpn]]></category>
		<category><![CDATA[virtual-access]]></category>
		<category><![CDATA[virtual-template]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[VTI]]></category>

		<guid isPermaLink="false">http://bmigette.fr/?p=201</guid>
		<description><![CDATA[Un article sur la configuration de VPN Site to Site en utilisant les fonctionnalités Easy VPN Server avec des DVTI. Topologie dynagen: EzVPN Introduction: L&#8217;avantage de cette solution est que l&#8217;on va pouvoir simplement créer plusieurs VPN avec les même paramètres en utilisant les templates. Les interface VTI supportent aussi d&#8217;autres protocoles que le protocole [...]]]></description>
			<content:encoded><![CDATA[<p>Un article sur la configuration de VPN Site to Site en utilisant les fonctionnalités Easy VPN Server avec des DVTI.</p>
<div id="attachment_204" class="wp-caption alignnone" style="width: 454px"><a href="http://bmigette.fr/wp-content/uploads/2009/03/capture1.png"><img class="size-full wp-image-204" title="Topologie" src="http://bmigette.fr/wp-content/uploads/2009/03/capture1.png" alt="Topologie" width="444" height="296" /></a><p class="wp-caption-text">Topologie</p></div>
<p>Topologie dynagen: <a href="http://bmigette.fr/wp-content/uploads/2009/03/EzVPN.zip">EzVPN</a></p>
<h2><span id="more-201"></span>Introduction:</h2>
<p>L&#8217;avantage de cette solution est que l&#8217;on va pouvoir simplement créer plusieurs VPN avec les même paramètres en utilisant les templates. Les interface VTI supportent aussi d&#8217;autres protocoles que le protocole IP. Cette solution n&#8217;utilises pas non plus de crypto maps: Tout ce qui est routé vers l&#8217;interface tunnel sera encrypté. De même, le traffic encrypté peut être reçu par n&#8217;importe quelle interface physique (tant qu&#8217;il correspond au traffic de l&#8217;interface tunnel).<br />
Lorsque le VPN est établi, une route statique par défaut est créé vers le hub VPN (sauf en cas de split tunneling, cas ou le traffic internet ne passe pas par le VPN).</p>
<p>Note, si le routeur est configuré avec une route statique par défaut, il faut que son AD soit supérieur a 1, sans quoi la route intallée par Easy VPN ne sera pas prise en compte (AD = 1).</p>
<h2>Pré-configuration</h2>
<p>Je vais simplement configuré une route par défaut sur le client et la passerelle VPN avec du PAT:</p>
<pre>VPNGate(config)#int f0/0
VPNGate(config-if)#ip add 80.0.1.2 255.255.255.0
VPNGate(config-if)#no sh
VPNGate(config)#ip nat inside source list 1 interface F0/0 overload
VPNGate(config)#access-list 1 permit any
VPNGate(config)#ip route 0.0.0.0 0.0.0.0 80.0.1.1 10 ! AD = 10 pour VPN, sinon tout passera par le net!
VPNGate(config)#int f0/0
VPNGate(config-if)#ip nat outside
VPNGate(config-if)#int loop 1
VPNGate(config-if)#ip nat inside
VPNGate(config-if)#ip add 192.168.1.1 255.255.255.0
VPNGate(config-if)#exit</pre>
<pre>VPNClient(config)#int f0/0
VPNClient(config-if)#ip add 80.0.0.2 255.255.255.0
VPNClient(config-if)#no sh
VPNClient(config-if)#ip nat inside source list 1 interface F0/0 overload
VPNClient(config)#access-list 1 permit any
VPNClient(config)#ip route 0.0.0.0 0.0.0.0 80.0.0.1 10 ! AD = 10 pour VPN, sinon tout passera par le net!
VPNClient(config-if)#int f0/0
VPNClient(config-if)#ip nat outside
VPNGate(config-if)#int loop 1
VPNGate(config-if)#ip nat inside
VPNGate(config-if)#ip add 192.168.0.1 255.255.255.0
VPNGate(config-if)#exit</pre>
<pre>WAN(config)#int f0/0
WAN(config-if)#ip add 80.0.0.1 255.255.255.0
WAN(config-if)#no sh
WAN(config-if)#int f0/1
WAN(config-if)#ip add 80.0.0.1 255.255.255.0
WAN(config-if)#no sh
WAN(config-if)#exit</pre>
<h2>Configuration du hub (VPNGate)</h2>
<h3>Création de la policy ISAKMP avec une clé par défaut (en production, utiliser une PKI serait plus sécurisé)</h3>
<pre>VPNGate(config)#crypto isakmp policy 1
VPNGate(config-isakmp)#encryption aes
VPNGate(config-isakmp)#hash sha
VPNGate(config-isakmp)#group 2
VPNGate(config-isakmp)#auth pre
VPNGate(config-isakmp)#auth pre-share
VPNGate(config-isakmp)#exit
<span style="text-decoration: line-through;">VPNGate(config)#crypto isakmp key password address 0.0.0.0 0.0.0.0</span></pre>
<h3>Creation de la configuration client</h3>
<p>Il faut spécifier les paramètres qui seront envoyés au client, à la manière du remote VPN. Ici, nous allons créer les paramètres pour le groupe cisco, ainsi qu&#8217;un profile ISAKMP pour les utilisateurs de ce groupe. Il faut aussi créer un utilisateur pour authentifier le router.</p>
<pre>VPNGate(config)#username VPNClient password EzVPNPass
VPNGate(config)#aaa new-model
VPNGate(config)#aaa authentication login <strong><span style="color: #00ff00;"><span style="text-decoration: underline;">IKMPLogin</span></span></strong> local
VPNGate(config)#aaa authorization network <span style="color: #ff0000;"><span style="text-decoration: underline;"><strong>IKMPAuthor</strong></span></span> local
VPNGate(config)#crypto isakmp client configuration group <span style="text-decoration: underline;"><strong><span style="color: #ffff99;">GroupeEzVPN</span></strong></span>
VPNGate(config-isakmp-group)#key password
VPNGate(config-isakmp-group)#domain labo.lan
VPNGate(config-isakmp-group)#pool <span style="color: #99ccff;"><span style="text-decoration: underline;"><strong>EzVPNPool</strong></span></span>
VPNGate(config-isakmp-group)#exit
VPNGate(config-isakmp-group)#acl <span style="text-decoration: underline;"><strong><span style="color: #993366;">101</span></strong></span>
VPNGate(config)#ip local pool <span style="color: #99ccff;"><span style="text-decoration: underline;"><strong>EzVPNPool</strong></span></span> 192.168.10.1 192.168.10.100
VPNGate(config)#access-list <span style="text-decoration: underline;"><strong><span style="color: #993366;">101</span></strong></span> permit ip 192.168.1.0 0.0.0.255 any
VPNGate(config)#crypto isakmp profile <span style="color: #cc99ff;"><span style="text-decoration: underline;"><strong>IKMPProfile1</strong></span></span>
% A profile is deemed incomplete until it has match identity statements
VPNGate(conf-isa-prof)#match identity group <span style="text-decoration: underline;"><strong><span style="color: #ffff99;">GroupeEzVPN</span></strong></span>
VPNGate(conf-isa-prof)#client configuration address respond
VPNGate(conf-isa-prof)#isakmp authorization list <span style="color: #ff0000;"><strong><span style="text-decoration: underline;">IKMPAuthor</span></strong></span>
VPNGate(conf-isa-prof)#client authentication list <span style="color: #00ff00;"><strong><span style="text-decoration: underline;">IKMPLogin</span></strong></span>
VPNGate(conf-isa-prof)#<span style="color: #ccffcc;"><span style="text-decoration: underline;"><strong>virtual-template 1</strong></span></span>
VPNGate(conf-isa-prof)#exit</pre>
<p><strong><span style="text-decoration: underline;">Note: On aurait pu utiliser des paramètres par défaut via les commandes crypto isakmp client config&#8230;/Crypto isakmp client auth&#8230;/Crypto isakmp author list&#8230; (voir mon article sur le remote VPN)</span></strong><br />
<strong><span style="text-decoration: underline;">Note2: L&#8217;acl sert à spécifier le traffic qui doit passer dans le VPN. Sans ça, tout passera par le VPN (pas de split tunneling).</span></strong></p>
<h3>Configuration IPSEC</h3>
<p>Ici on créé un transform set et un profile IPSec qui sera rattaché à l&#8217;interface Template</p>
<pre>VPNGate(config)#crypto ipsec transform-set <span style="text-decoration: underline;"><strong><span style="color: #3366ff;">EzVPNTSet</span></strong></span> esp-aes esp-sha
VPNGate(cfg-crypto-trans)#exit
VPNGate(config)#crypto ipsec profile <span style="color: #ff6600;"><span style="text-decoration: underline;"><strong>IPSecProfile1</strong></span></span>
VPNGate(ipsec-profile)#set transform-set <span style="color: #3366ff;"><span style="text-decoration: underline;"><strong>EzVPNTSet</strong></span></span>
VPNGate(ipsec-profile)#set isakmp-profile <span style="text-decoration: underline;"><span style="color: #cc99ff;"><strong>IKMPProfile1</strong></span></span>
VPNGate(ipsec-profile)#exit</pre>
<h3>Configuration de l&#8217;interface VTI</h3>
<p>La commande ip unnumbered permet de partager l&#8217;adresse ip de l&#8217;interface F0/0</p>
<pre>VPNGate(config)#interface <span style="color: #ccffcc;"><span style="text-decoration: underline;"><strong>virtual-template 1</strong></span></span> type tunnel .
VPNGate(config-if)#ip unnumbered fastEthernet 0/0
VPNGate(config-if)#tunnel source f0/0
VPNGate(config-if)#tunnel mode ipsec ipv4
VPNGate(config-if)#tunnel protection ipsec profile <span style="color: #ff6600;"><span style="text-decoration: underline;"><strong>IPSecProfile1</strong></span></span></pre>
<p>Voila c&#8217;est tout pour le hub, attaquons la config du client:</p>
<h2>Configuration du client</h2>
<p>La configuration du client, comme vous vous en doutez, vas être beaucoup plus simple:</p>
<h3>Configuration ISAKMP</h3>
<pre><span style="text-decoration: line-through;">VPNClient(config)#crypto isakmp key password address 0.0.0.0 0.0.0.0</span></pre>
<p>Le reste sera récupéré sur le serveur easy vpn</p>
<h3>Configuration EzVpn</h3>
<pre>VPNClient(config)#int <span style="color: #ccffcc;"><span style="text-decoration: underline;"><strong>virtual-template 1</strong></span></span> type tunnel
VPNClient(config-if)#tunnel mode ipsec ipv4
VPNClient(config)#crypto ipsec client ezvpn <span style="color: #ccffff;"><span style="text-decoration: underline;"><strong>ezVpnConnection1</strong></span></span>
VPNClient(config-crypto-ezvpn)#connect manual
VPNClient(config-crypto-ezvpn)#group <span style="text-decoration: underline;"><strong><span style="color: #ffff99;">GroupeEzVPN</span></strong></span> key password
VPNClient(config-crypto-ezvpn)#local-address f0/0
VPNClient(config-crypto-ezvpn)#peer 80.0.1.2 !VPNGate
VPNClient(config-crypto-ezvpn)#mode client
VPNClient(config-crypto-ezvpn)#virtual-interface<strong> </strong><span style="color: #ccffcc;"><span style="text-decoration: underline;"><strong>1</strong></span></span>
EZVPN: For virtual-interface to take effect apply ezvpn on a real interface
VPNClient(config-crypto-ezvpn)#exit
VPNClient(config)#int f0/0
VPNClient(config-if)#crypto ipsec client ezvpn ezVpnConnection1
VPNClient(config-if)#int loop 1
VPNClient(config-if)#crypto ipsec client ezvpn ezVpnConnection1 inside</pre>
<h3>Connexion du VPN:</h3>
<h4>manuellement</h4>
<pre>VPNClient#crypto ipsec client ezvpn connect<span style="color: #ccffff;"><span style="text-decoration: underline;"><strong>ezVpnConnection1
</strong></span></span>VPNClient#
*Mar  1 01:54:17.268: EZVPN(ezVpnConnection1): Pending XAuth Request, Please enter the following command:
*Mar  1 01:54:17.268: EZVPN: crypto ipsec client ezvpn xauth
VPNClient#crypto ipsec client ezvpn xauth
Username: VPNClient !Client créé avec la commande username sur VPNGate
Password:
VPNClient#
*Mar  1 01:55:07.599: %CRYPTO-6-EZVPN_CONNECTION_UP: (Client)  User=  Group=GroupeEzVPN  Client_public_addr=80.0.0.2  Server_public_addr=80.0.1.2  Assigned_client_addr=192.168.10.1
*Mar  1 01:55:07.799: %LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up</pre>
<h4>automatiquement</h4>
<p>Sur le serveur, ajouter l&#8217;option save password, sans quoi le serveur rejetteras les login et forcera le renseignement manuel du login mot de passe</p>
<pre>VPNGate(config)#crypto isakmp client configuration group GroupeEzVPN
VPNGate(config-isakmp-group)#save-password
VPNGate(config-isakmp-group)#exit</pre>
<p>Sur le client</p>
<pre>VPNClient(config-crypto-ezvpn)#xauth userid mode local
VPNClient(config-crypto-ezvpn)#username VPNClient password EzVPNPass
VPNClient(config-crypto-ezvpn)#connect auto</pre>
<h3>Tests:</h3>
<pre>VPNClient#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is 80.0.0.1 to network 0.0.0.0

     80.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C       80.0.0.0/24 is directly connected, FastEthernet0/0
S       80.0.1.2/32 [1/0] via 80.0.0.1
     192.168.10.0/32 is subnetted, 1 subnets
C       192.168.10.4 is directly connected, Loopback0
C    192.168.0.0/24 is directly connected, Loopback1
<strong><span style="text-decoration: underline;"><span style="color: #ff0000;">S    192.168.1.0/24 [1/0] via 0.0.0.0, Virtual-Access2</span></span></strong>
S*   0.0.0.0/0 [10/0] via 80.0.0.1
VPNClient#ping 192.168.1.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/52/133 ms</pre>
<p>ISAKMP</p>
<pre>VPNClient#sh crypto session
Crypto session current status

Interface: FastEthernet0/0
Session status: UP-ACTIVE
Peer: 80.0.1.2 port 500
  IKE SA: local 80.0.0.2/500 remote 80.0.1.2/500 Active
  IPSEC FLOW: permit ip 0.0.0.0/0.0.0.0 0.0.0.0/0.0.0.0
        Active SAs: 2, origin: crypto map

VPNClient#sh crypto ipsec client ezvpn
Easy VPN Remote Phase: 6

Tunnel name : ezVpnConnection1
Inside interface list: Loopback1
Outside interface: Virtual-Access2 (bound to FastEthernet0/0)
Current State: IPSEC_ACTIVE
Last Event: SOCKET_UP
<span style="color: #ff0000;"><strong><span style="text-decoration: underline;">Address: 192.168.10.5</span></strong></span> !IP du pool configuré
Mask: 255.255.255.255
Default Domain: labo.lan
Save Password: Disallowed
Split Tunnel List: 1
<span style="color: #ff0000;"><strong><span style="text-decoration: underline;">       Address    : 192.168.1.0 !Paramètres définit par l'ACL 101 sur VPNGate</span></strong></span>
       Mask       : 255.255.255.0
       Protocol   : 0x0
       Source Port: 0
       Dest Port  : 0
Current EzVPN Peer: 80.0.1.2

<span style="color: #ff0000;"><strong><span style="text-decoration: underline;">VPNClient#sh crypto map</span></strong></span> ! crypto maps générées automatiquement
Crypto Map: "Virtual-Access2-head-0" idb: FastEthernet0/0 local address: 80.0.0.2

Crypto Map "Virtual-Access2-head-0" 65536 ipsec-isakmp
	Map is a PROFILE INSTANCE.
	Peer = 80.0.1.2
	Extended IP access list
	    access-list  permit ip any any
	Current peer: 80.0.1.2
	Security association lifetime: 4608000 kilobytes/2147483 seconds
	PFS (Y/N): N
	DH group:  group2
	Transform sets={
		ezvpn-profile-autoconfig-transform-0,
		ezvpn-profile-autoconfig-transform-1,
		ezvpn-profile-autoconfig-transform-2,
		ezvpn-profile-autoconfig-transform-3,
		ezvpn-profile-autoconfig-transform-4,
		ezvpn-profile-autoconfig-transform-5,
		ezvpn-profile-autoconfig-transform-6,
		ezvpn-profile-autoconfig-transform-7,
		ezvpn-profile-autoconfig-transform-8,
		ezvpn-profile-autoconfig-transform-9,
                ezvpn-profile-autoconfig-transform-10,
		ezvpn-profile-autoconfig-transform-11,
		ezvpn-profile-autoconfig-transform-12,
		ezvpn-profile-autoconfig-transform-13,
		ezvpn-profile-autoconfig-transform-14,
		ezvpn-profile-autoconfig-transform-15,
		ezvpn-profile-autoconfig-transform-16,
		ezvpn-profile-autoconfig-transform-17,
		ezvpn-profile-autoconfig-transform-18,
		ezvpn-profile-autoconfig-transform-19,
	}
	Interfaces using crypto map Virtual-Access2-head-0:
		Virtual-Access2</pre>
<p>VPNGATE:</p>
<pre>VPNGate#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is 80.0.1.1 to network 0.0.0.0

     80.0.0.0/24 is subnetted, 1 subnets
C       80.0.1.0 is directly connected, FastEthernet0/0
     192.168.10.0/32 is subnetted, 1 subnets
<strong><span style="text-decoration: underline;"><span style="color: #ff0000;">S       192.168.10.5 [1/0] via 0.0.0.0, Virtual-Access2</span></span></strong>
C    192.168.1.0/24 is directly connected, Loopback1
S*   0.0.0.0/0 [10/0] via 80.0.1.1
VPNGate#</pre>
]]></content:encoded>
			<wfw:commentRss>http://bmigette.fr/2009/03/03/easy-vpn-server-avec-dvti-dynamic-vpn-tunnel-interfaces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamic Multipoint VPN (DMVPN) + Certificats</title>
		<link>http://bmigette.fr/2009/02/08/dmvpn-certificats/</link>
		<comments>http://bmigette.fr/2009/02/08/dmvpn-certificats/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 20:16:28 +0000</pubDate>
		<dc:creator>Bastien Migette</dc:creator>
				<category><![CDATA[CCSP]]></category>
		<category><![CDATA[Sécurité réseau]]></category>
		<category><![CDATA[SNRS]]></category>
		<category><![CDATA[Ca]]></category>
		<category><![CDATA[DMVPN]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[SCEP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[windows 2003]]></category>

		<guid isPermaLink="false">http://bmigette.fr/?p=179</guid>
		<description><![CDATA[Voici un petit article pour la configuration de vpn dynamiques en utilisant des certificats. Fichier dynagen: ghostios = True sparsemem = True #workingdir = c:temp [localhost] [[3660]] image = ../images/C3660-JK.BIN ram = 128 idlepc = 0x604eb02c [[2621XM]] image = ../images/C2600-AD.BIN ram = 96 idlepc = 0x81691494 [[ROUTER IAR]] model = 3660 F0/0=NIO_gen_eth:vmnet1 #serveur CA F1/0=HUB [...]]]></description>
			<content:encoded><![CDATA[<p>Voici un petit article pour la configuration de vpn dynamiques en utilisant des certificats.</p>
<div id="attachment_184" class="wp-caption alignnone" style="width: 483px"><a href="http://bmigette.fr/wp-content/uploads/2009/02/topo3.png"><img class="size-full wp-image-184" title="Topologie" src="http://bmigette.fr/wp-content/uploads/2009/02/topo3.png" alt="Topologie" width="473" height="474" /></a><p class="wp-caption-text">Topologie</p></div>
<p><span id="more-179"></span>Fichier dynagen:</p>
<pre>ghostios   = True
sparsemem  = True
#workingdir = c:temp

[localhost]
	[[3660]]
	        image = ../images/C3660-JK.BIN
	        ram = 128
		idlepc = 0x604eb02c
	[[2621XM]]
		image = ../images/C2600-AD.BIN
		ram = 96
		idlepc = 0x81691494
    [[ROUTER IAR]]
        model = 3660
        F0/0=NIO_gen_eth:vmnet1 #serveur CA
	F1/0=HUB F0/0
	F2/0=SPOKE2 F0/0
	F3/0=SPOKE3 F0/0
    [[ROUTER HUB]]
        model = 2621XM
    [[ROUTER SPOKE2]]
      model = 2621XM
    [[ROUTER SPOKE3]]
        model = 2621XM</pre>
<p>Pour l&#8217;installation SCEP sous windows, c&#8217;est par ici: <a href="http://micronetsolution.net/Microsoft_CA_Cisco_setup.pdf" target="_blank">http://micronetsolution.net/Microsoft_CA_Cisco_setup.pdf</a> edit: Lien HS. Si quelqu&#8217;un à DL le fichier, qu&#8217;il me l&#8217;envoi par mail postmaster ar0base bmigette.Fr merci.</p>
<h3>Introduction:</h3>
<p>Dynamic multipoint VPN (DMVPN pour les intimes), qu&#8217;est-ce que c&#8217;est ? Les DMVPN utilisent mGRE (Multipoint GRE), et NHRP (Next Hop Resolution Protocol), pour former des tunnels à la volée, c&#8217;est à dire qu&#8217;on a pas besoin de connaitre les IP des peers distants, mais l&#8217;on va dynamiquement créer des liaisons point à point vers tous les routeurs dans le même groupe mGRE que nous. On pourrait comparer NHRP à l&#8217;ARP pour les tunnels multipoints, sauf que cela permet de passer d&#8217;une ip privée vers une ip publique. Cela à pour avantage de simplifier la configuration des routeurs, et permettre l&#8217;extensibilité, notemment en cas d&#8217;ajout d&#8217;un noeud. Du fait que les peers ne sont pas connu à l&#8217;avance, nous pouvons créer une clef isakmp par défaut (<a href="http://bmigette.fr/2009/02/01/isakmp-pre-shared-key-par-defaut/">http://bmigette.fr/2009/02/01/isakmp-pre-shared-key-par-defaut/</a>), ou, comme c&#8217;est le cas ici, utiliser une infrastucture PKI qui est plus sécurisée.</p>
<p>Il y a deux approches pour le DMVPN:</p>
<p>Hub and spoke, topologie dans laquelle le hub utilise une interface tunnel mGRE, et il n&#8217;y aura pas de tunnel direct entre les différents sites, le hub fera le routage entre les tunnels.<br />
Spoke To Spoke, les différents noeud distant établissent des tunnels entre eux de manière dynamiques, de manière à formé un réseau full mesh. C&#8217;est ce que nous allons voir ici.</p>
<p><strong><span style="text-decoration: underline;">Note: La notion HUB ici désignera simplement le routeur qui servira pour la résolution du Next Hop (ce sera le Next Hop Server, NHS), mais les tunnels se feront bien entre tous les routeurs</span></strong></p>
<h3>Etape 1: Configuration du serveur SCEP:</h3>
<p>Le protocole SCEP permets simplement à un équipement de demander un certificat auprès d&#8217;un CA. Nous allons installer le support SCEP sur un serveur Windows 2003 Server.</p>
<p>Dans le panneau de configuration, sélectionnez Add or remove windows component.Selectionnez ensuite Certificate services, et dans applications services cochez IIS. Téléchargez ensuite le support SCEP pour le service de certificat microsoft (cepsetup.exe):<br />
<a href="http://www.microsoft.com/DOWNLOADS/details.aspx?FamilyID=9f306763-d036-41d8-8860-1636411b2d01&amp;displaylang=en">http://www.microsoft.com/DOWNLOADS/details.aspx?FamilyID=9f306763-d036-41d8-8860-1636411b2d01&amp;displaylang=en</a></p>
<p>Installez l&#8217;outil en laissant les paramètres par défaut.<br />
Allez dans le gestionnaire IIS (start/administrative tools/Internet Information Services (IIS) Manager), puis déroullez &laquo;&nbsp;Application pools&nbsp;&raquo;, puis click droit sur SCEP,properties, et vérifiez que dans l&#8217;onglet properties, Predefined est coché, et que Local system est sélectionné.</p>
<p>Note: IIS est le serveur web microsoft, il est utilisé par SCEP. Attention à sa configuration (ne pas laisser de site par défaut&#8230;).</p>
<h3>Etape 2: Configuration de l&#8217;adressage :</h3>
<p>N&#8217;oubliez pas l&#8217;ip du serveur de certificat. Dans la réalité, le serveur de certificat serait relié par un adressage privé sur un des routeur et on utiliserait du nat, mais ce n&#8217;est pas le but ici.</p>
<p>Hub:</p>
<pre>Router(config)#hostname IAR
IAR(config)#int f0/0
IAR(config-if)#ip add 80.0.0.1 255.255.255.0
IAR(config-if)#no shut
IAR(config-if)#int f1/0
IAR(config-if)#ip add 80.0.1.1 255.255.255.0
IAR(config-if)#no shut
IAR(config-if)#int f2/0
IAR(config-if)#ip address 80.0.2.1 255.255.255.0
IAR(config-if)#no shut
IAR(config-if)#int f3/0
IAR(config-if)#ip add 80.0.3.1 255.255.255.0
IAR(config-if)#no shut</pre>
<p>Hub:</p>
<pre>Router&gt;en
Router#conf t
HUB(config)#int f0/0
HUB(config-if)#ip add 80.0.1.2 255.255.255.0
HUB(config-if)#no sh
HUB(config)#int loop1
HUB(config-if)#ip add 1.1.1.1 255.255.255.0</pre>
<p>Spoke2:</p>
<pre>Router&gt;en
Router#conf t
SPOKE2(config)#int f0/0
SPOKE2(config-if)#ip add 80.0.2.2 255.255.255.0
SPOKE2(config-if)#no sh
SPOKE2(config)#int loop1
SPOKE2(config-if)#ip add 2.2.2.2 255.255.255.0</pre>
<p>Spoke3:</p>
<pre>Router&gt;en
Router#conf t
SPOKE3(config)#int f0/0
SPOKE3(config-if)#ip add 80.0.3.2 255.255.255.0
SPOKE3(config-if)#no sh
SPOKE3(config)#int loop1
SPOKE3(config-if)#ip add 3.3.3.3 255.255.255.0</pre>
<p>Sur chaque routeur (sauf IAR):</p>
<pre>ip route 0.0.0.0 0.0.0.0 A.B.C.D</pre>
<h3>Etape 3: Enrollment des spoke et du hub sur le serveur de certificat.</h3>
<p>Pour cela, il faut sur les Spoke (inutile sur le Hub, il n&#8217;utilisera pas de certificats), tapez les commande suivantes:<br />
Note: Pensez aussi à vérifier la synchronisation de l&#8217;heure entre les équipements et le serveur, le meiux est d&#8217;utiliser un serveur NTP.</p>
<p>Dans l&#8217;ordre:</p>
<ul>
<li>Définir un nom d&#8217;hôtes</li>
<li>Définir un nom de domaine</li>
<li>Mapper le nom d&#8217;hôtes du serveur de certificat si le service DNS n&#8217;est pas utilisé</li>
<li>Supprimer les anciennes clé RSA</li>
<li>Générer des clés RSA 1024 Bits</li>
<li>Définir un CA (Certificate authority) de confiance</li>
<li>Ajouter le CA comme étant une Registration Authority (RA)</li>
<li>Spécifier l&#8217;url du serveur (vous avez du l&#8217;avoir lors de l&#8217;installation)</li>
<li>Obtenir la clé du serveur</li>
<li>Obtenir un certificat</li>
</ul>
<p><strong><span style="text-decoration: underline;">Pour la commnade crypto ca enroll, il faut le mot de passe SCEP du serveur. Ce mot de passe s&#8217;obtiens en se connecant ici:<br />
http://ca-server/certsrv/mscep/ (si votre serveur s&#8217;appelle ca-server). Pour vous logguer, utilisez un compte local (vu que vous avez mis local system à l&#8217;étape 1). Ce mot de passe est utilisable qu&#8217;une seule fois, il suffit de rafraîchir la page pour en obtenir un nouveau.</span></strong></p>
<pre>hostname device_name
ip domain-name yourdomain.com
ip host CA-Server A.B.C.D
crypto key zeroize rsa
crypto key generate rsa general-keys modulus 1024
crypto ca trustpoint your_trustpoint_name
  enrollment mode ra
  enrollment url http://CA-Server/certsrv/mscep/mscep.dll
  exit
crypto ca authenticate your_trustpoint_name
crypto ca enroll your_trustpoint_name</pre>
<p>Exemple pour SPOKE2:</p>
<pre>SPOKE2(config)#ip domain-name mynetwork.lan
SPOKE2(config)#ip host CA-Server 80.0.0.10
SPOKE2(config)#crypto key zeroize rsa
% No Signature RSA Keys found in configuration.

SPOKE2(config)#crypto key generate rsa general-keys modulus 1024
The name for the keys will be: SPOKE2.mynetwork.lan

% The key modulus size is 1024 bits
% Generating 1024 bit RSA keys, keys will be non-exportable...[OK]

SPOKE2(config)#crypto ca trustpoint myCaServer
SPOKE2(ca-trustpoint)#  enrollment mode ra
SPOKE2(ca-trustpoint)#$enrollment url http://CA-Server/certsrv/mscep/mscep.dll
SPOKE2(ca-trustpoint)#  exit
SPOKE2(config)#crypto ca authenticate myCaServer
Feb   16:47:54.363: %SSH-5-ENABLED: SSH 1.99 has been enabled
Certificate has the following attributes:
       Fingerprint MD5: 591609E4 D5171FFF 1A068C5C F5E4A507
      Fingerprint SHA1: 387CAF66 99B55B8A 4719C3FB 5174B6E0 56768896 

% Do you accept this certificate? [yes/no]: y
Trustpoint CA certificate accepted.
SPOKE2(config)#crypto ca enroll myCaServer
%
% Start certificate enrollment ..
% Create a challenge password. You will need to verbally provide this
   password to the CA Administrator in order to revoke your certificate.
   For security reasons your password will not be saved in the configuration.
   Please make a note of it.

Password: <span style="text-decoration: underline;"><strong>&lt;=Password from http://ca-server/certsrv/mscep/ </strong></span>
Re-enter password: <span style="text-decoration: underline;"><strong>&lt;=Password from http://ca-server/certsrv/mscep/ </strong></span>

% The subject name in the certificate will include: SPOKE2.mynetwork.lan
% Include the router serial number in the subject name? [yes/no]: yes
% The serial number in the certificate will be: 00000000000
% Include an IP address in the subject name? [no]: no
Request certificate from CA? [yes/no]: yes
% Certificate request sent to Certificate Authority
% The 'show crypto ca certificate myCaServer verbose' commandwill show the fingerprint.

SPOKE2(config)#
Feb  8 16:49:12.996: CRYPTO_PKI:  Certificate Request Fingerprint MD5: 17E8E0CC B33A4ED1 C5B2D917 3A1EBE6C
Feb  8 16:49:12.996: CRYPTO_PKI:  Certificate Request Fingerprint SHA1: 0BE3A8F3 6C28152D 38C8F0A5 B02C6FDF 8AED29A4
!Après avoir "issue" le certificate (voir la ligne en rouge <img src='http://bmigette.fr/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )
Feb  8 20:45:22.767: %PKI-6-CERTRET: Certificate received from Certificate Authority</pre>
<p>Faire la même chose pour les autres routeurs.</p>
<p><span style="color: #ff0000;"><span style="text-decoration: underline;"><strong>Allez ensuite dans start/Administrative tools/Certification Authority, et sélectionnez pending request. Vous devriez avoir la liste des certificats de vos routers. Sélectionnez les, clique droit, all task, et cliquez sur issue !</strong></span></span></p>
<h3>Etape 3: Configuration ISAKMP avec Certificats et du profil IPSEC:</h3>
<p>Voici les commandes pour configurer ISAKMP:</p>
<pre>HUB(config)#crypto isakmp policy 1
HUB(config-isakmp)#hash sha
HUB(config-isakmp)#encryp aes
HUB<strong>(config-isakmp)#authen rsa-sig</strong>
HUB(config-isakmp)#group 5
HUB(config-isakmp)#exit</pre>
<p>A faire sur tous les spoke.</p>
<p>Il faut aussi créer un profile IPSEC qui sera utilisé pour sécuriser le tunnel:</p>
<pre>HUB(config)#crypto ipsec transform-set DMVPN_TSet esp-aes
HUB(cfg-crypto-trans)#exit
HUB(config)#crypto ipsec profile <strong><span style="color: #ff0000;">DMVPN_IPSEC_Profile</span></strong>
HUB(ipsec-profile)#set transform-set DMVPN_TSet
HUB(ipsec-profile)#exit</pre>
<p>A faire sur tous les spoke.</p>
<h3>Etape4: Configuration des interfaces mGRE:</h3>
<p>Note: attention au MTU! Les entêtes GRE utilisent 4octets, mGRE, 4 autres supplémentaires, et l&#8217;entête IP du tunnel 20octets.<br />
Pour le routage, il faut considérer que tous les routeurs vont être dans le même sous réseau. Au niveau des interfaces tunnel, cela va donner ceci:</p>
<p>HUB: 192.168.1.1/24<br />
SPOKE2: 192.168.1.2/24<br />
SPOKE3: 192.168.1.3/24</p>
<p>Ces adresses seront mappées à leur adresses publiques par le HUB qui utilisera NHRP. Il faudra donc dire à EIGRP (ou autre protocole de routage IGP), de ne pas avertir de routes pour le réseau du VPN avec son IP local (no ip next-hop-self eigrp {AS}), car sinon cela crééré des incohérences dans la table de routage. On désactivera aussi le split-horizon, sans quoi une mise à jour reçue par le tunnel ne serait pas réémise.</p>
<p>Configuration pour le hub:</p>
<ul>
<li>Création d&#8217;une interface tunnel</li>
<li>Attribution de l&#8217;ip privée du tunnel</li>
<li>Changement du MTU (mettre un MTU bas afin de s&#8217;assurer que les paquets ne seront pas fragmenter sur le chemin, mais qu&#8217;ils seront fragmentés avant d&#8217;êtres envoyés).</li>
<li>Créer un mot de passe NHRP</li>
<li>Indiquer que le mappage se fera de manière dynamique par NHRP</li>
<li>Indiquer le réseau NHRP (doit être le même sur les spoke)</li>
<li>Désactiver le split horizon (nous utiliseront EIGRP 65000 Plus tard)</li>
<li>Tunnel source et tunnel key (la clé doit être la même sur les spoke, ceci est optionnel, et peut être vu comme une sécurité assez basique: on ne pourra pas établir de tunnel sans deviner la clé).</li>
<li>Tunnel mGRE</li>
<li>Application du profile IPSEC</li>
</ul>
<pre>HUB(config)#interface Tunnel 0
HUB(config-if)#ip address 192.168.1.1 255.255.255.0
HUB(config-if)#ip mtu 1416
HUB(config-if)#no ip next-hop-self eigrp 65000
HUB(config-if)#ip nhrp authentication cisco123
HUB(config-if)#ip nhrp map multicast dynamic
HUB(config-if)#ip nhrp network-id 99
HUB(config-if)#no ip split-horizon eigrp 65000
HUB(config-if)#tunnel source FastEthernet 0/0
HUB(config-if)#tunnel key 999
HUB(config-if)#tunnel mode gre multipoint
HUB(config-if)#tunnel protection ipsec profile <span style="color: #ff0000;"><strong>DMVPN_IPSEC_Profile
</strong></span></pre>
<p>Pour les spoke:</p>
<ul>
<li>Création d&#8217;une interface tunnel</li>
<li>Attribution de l&#8217;ip privée du tunnel</li>
<li>Changement du MTU (mettre un MTU bas afin de s&#8217;assurer que les paquets ne seront pas fragmenter sur le chemin, mais qu&#8217;ils seront fragmentés avant d&#8217;êtres envoyés).</li>
<li>Créer un mot de passe NHRP</li>
<li>Faire un mappage dynamique NHRP pointant sur l&#8217;adresse du HUB.</li>
<li>Rediriger le multicast vers une adresse unicast (l&#8217;adresse publique du HUB). Cela permettras l&#8217;utilisation de protocole de routage dynamiques utilisant du multicast (EIGRP, OSPF&#8230;)</li>
<li>Indiquer l&#8217;adresse du NHS (Next Hop Server), qui indique le serveur qui contient le mapping IP publique/IP Tunnel.</li>
<li>Indiquer le réseau NHRP (doit être le même sur les spoke)</li>
<li>Désactiver le split horizon (nous utiliseront EIGRP 65000 Plus tard)</li>
<li>Tunnel source et tunnel key (la clé doit être la même sur les spoke, ceci est optionnel, et peut être vu comme une sécurité assez basique: on ne pourra pas établir de tunnel sans deviner la clé).</li>
<li>Tunnel mGRE</li>
<li>Application du profile IPSEC</li>
</ul>
<pre>SPOKE2(config)#interface Tunnel 0
SPOKE2(config-if)#ip address 192.168.1.2 255.255.255.0
SPOKE2(config-if)#ip mtu 1416
SPOKE2(config-if)#no ip next-hop-self eigrp 65000
SPOKE2(config-if)#ip nhrp authentication cisco123
SPOKE2(config-if)#ip nhrp map 192.168.1.1 80.0.1.2
SPOKE2(config-if)#ip nhrp map multicast 80.0.1.2
SPOKE2(config-if)#ip nhrp nhs 192.168.1.1
SPOKE2(config-if)#ip nhrp network-id 99
SPOKE2(config-if)#no ip split-horizon eigrp 65000
SPOKE2(config-if)#tunnel source FastEthernet 0/0
SPOKE2(config-if)#tunnel key 999
SPOKE2(config-if)#tunnel mode gre multipoint
SPOKE2(config-if)#tunnel protection ipsec profile <span style="color: #ff0000;"><strong>DMVPN_IPSEC_Profile</strong></span></pre>
<h3>Etape 5: Configuration du routage:</h3>
<p>Sur le hub:</p>
<pre>HUB(config)#router eigrp 65000
HUB(config-router)#net 1.1.1.0 0.0.0.255
HUB(config-router)#net 192.168.1.0 0.0.0.255
HUB(config-router)#no auto-summary
HUB(config-router)#exit</pre>
<p>Sur les spoke:</p>
<pre>SPOKE2(config)#router eigrp 65000
SPOKE2(config-router)#net 192.168.1.0 0.0.0.255
SPOKE2(config-router)#net 2.2.2.0 0.0.0.255
SPOKE2(config-router)#eigrp stub connected
SPOKE2(config-router)#exit</pre>
<pre>SPOKE3(config)#router eigrp 65000
SPOKE3(config-router)#net 192.168.1.0 0.0.0.255
SPOKE3(config-router)#net 3.3.3.3 0.0.0.255
SPOKE3(config-router)#eigrp stub connected
SPOKE3(config-router)#exit</pre>
<p>La fonction stub permet à EIGRP de ne pas apprendre toutes les routes du réseau, étant donné qu&#8217;il n&#8217;aura qu&#8217;un seul chemin possible. Le mot clef stub connected lui permet toutefois d&#8217;avertir ses routes connectées.</p>
<p>Voila tout doit marcher !!! Quelques commandes de vérifications:</p>
<p>Sur le hub</p>
<pre>HUB#sh crypto isakmp peers
Peer: 80.0.2.2 Port: 500 Local: 80.0.1.2
 Phase1 id: SPOKE2.mynetwork.lan
Peer: 80.0.3.2 Port: 500 Local: 80.0.1.2
 Phase1 id: SPOKE3.mynetwork.lan
HUB#sh ip nhrp dynamic
192.168.1.2/32 via 192.168.1.2, Tunnel0 created 00:06:47, expire 01:53:12
  Type: dynamic, Flags: unique nat registered
  NBMA address: 80.0.2.2
192.168.1.3/32 via 192.168.1.3, Tunnel0 created 00:06:44, expire 01:54:04
  Type: dynamic, Flags: unique nat registered
  NBMA address: 80.0.3.2</pre>
<p>Sur tout les routeurs:</p>
<pre>HUB#sh crypto ca certificates
<strong>Certificate</strong> <em><strong>! votre certificat</strong></em>
  Status: Available
  Certificate Serial Number: 61DEC674000000000008
  Certificate Usage: General Purpose
  Issuer:
    cn=ca-server
  Subject:
    Name: HUB.mynetwork.lan
    Serial Number: 00000000000
    hostname=HUB.mynetwork.lan
    serialNumber=00000000000
  CRL Distribution Points:

http://ca-server/CertEnroll/ca-server.crl

  Validity Date:
    start date: 18:51:17 UTC Feb 8 2009
    end   date: 19:01:17 UTC Feb 8 2010
  Associated Trustpoints: myCaServer 

<strong>CA Certificate </strong><em><strong>! Certificat du server</strong></em>
  Status: Available
  Certificate Serial Number: 4ED821D7E08FC8B74BC4E55A9500A3EA
  Certificate Usage: Signature
  Issuer:
    cn=ca-server
  Subject:
    cn=ca-server
  CRL Distribution Points:

http://labo-cisco/CertEnroll/ca-server.crl

  Validity Date:
    start date: 14:17:08 UTC Feb 8 2009
    end   date: 14:17:08 UTC Feb 8 2014
  Associated Trustpoints: myCaServer</pre>
<p>Les crypto map qui sont créées (une par peer distant, et ce automatiquement&#8230; C&#8217;est pas beau ?):</p>
<pre>HUB#sh crypto map
Crypto Map "Tunnel0-head-0" 65536 ipsec-isakmp
	Profile name: DMVPN_IPSEC_Profile
	Security association lifetime: 4608000 kilobytes/3600 seconds
	PFS (Y/N): N
	Transform sets={
		DMVPN_TSet,
	}

Crypto Map "Tunnel0-head-0" 65539 ipsec-isakmp
	Map is a PROFILE INSTANCE.
	Peer = 80.0.2.2
	Extended IP access list
	    access-list  permit gre host 80.0.1.2 host 80.0.2.2
	Current peer: 80.0.2.2
	Security association lifetime: 4608000 kilobytes/3600 seconds
	PFS (Y/N): N
	Transform sets={
		DMVPN_TSet,
	}

Crypto Map "Tunnel0-head-0" 65540 ipsec-isakmp
	Map is a PROFILE INSTANCE.
	Peer = 80.0.3.2
        Extended IP access list
	    access-list  permit gre host 80.0.1.2 host 80.0.3.2
	Current peer: 80.0.3.2
	Security association lifetime: 4608000 kilobytes/3600 seconds
	PFS (Y/N): N
	Transform sets={
		DMVPN_TSet,
	}
	Interfaces using crypto map Tunnel0-head-0:
		Tunnel0
HUB#sh crypto map
Crypto Map "Tunnel0-head-0" 65536 ipsec-isakmp
	Profile name: DMVPN_IPSEC_Profile
	Security association lifetime: 4608000 kilobytes/3600 seconds
	PFS (Y/N): N
	Transform sets={
		DMVPN_TSet,
	}

Crypto Map "Tunnel0-head-0" 65539 ipsec-isakmp
	Map is a PROFILE INSTANCE.
	Peer = 80.0.2.2
	Extended IP access list
	    access-list  permit gre host 80.0.1.2 host 80.0.2.2
	Current peer: 80.0.2.2
	Security association lifetime: 4608000 kilobytes/3600 seconds
	PFS (Y/N): N
	Transform sets={
		DMVPN_TSet,
	}

Crypto Map "Tunnel0-head-0" 65540 ipsec-isakmp
	Map is a PROFILE INSTANCE.
	Peer = 80.0.3.2
        Extended IP access list
	    access-list  permit gre host 80.0.1.2 host 80.0.3.2
	Current peer: 80.0.3.2
	Security association lifetime: 4608000 kilobytes/3600 seconds
	PFS (Y/N): N
	Transform sets={
		DMVPN_TSet,
	}
	Interfaces using crypto map Tunnel0-head-0:
		Tunnel0</pre>
<p>Et la table de routage:</p>
<pre>HUB#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is 80.0.1.1 to network 0.0.0.0

     1.0.0.0/24 is subnetted, 1 subnets
C       1.1.1.0 is directly connected, Loopback1
     2.0.0.0/24 is subnetted, 1 subnets
D       2.2.2.0 [90/297372416] via 192.168.1.2, 00:07:06, Tunnel0
     3.0.0.0/24 is subnetted, 1 subnets
D       3.3.3.0 [90/297372416] via 192.168.1.3, 00:07:25, Tunnel0
     80.0.0.0/24 is subnetted, 1 subnets
C       80.0.1.0 is directly connected, FastEthernet0/0
C    192.168.1.0/24 is directly connected, Tunnel0
S*   0.0.0.0/0 [1/0] via 80.0.1.1</pre>
<p>Voila! Un petit lab qui m&#8217;a pris l&#8217;après midi (surotut l&#8217;histoire du issue certificate !!! Bref si vous avez des questions, direction les comments. Je vous mets les conf finales à télécharger: <a href="http://bmigette.fr/wp-content/uploads/2009/02/dmvpntar.gz">Configurations</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bmigette.fr/2009/02/08/dmvpn-certificats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VLANs Dynamiques via dot1x et serveur radius (CS ACS)</title>
		<link>http://bmigette.fr/2008/09/25/vlans-dynamiques-via-dot1x-et-serveur-radius-cs-acs/</link>
		<comments>http://bmigette.fr/2008/09/25/vlans-dynamiques-via-dot1x-et-serveur-radius-cs-acs/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 21:28:54 +0000</pubDate>
		<dc:creator>Bastien Migette</dc:creator>
				<category><![CDATA[CCSP]]></category>
		<category><![CDATA[Sécurité réseau]]></category>
		<category><![CDATA[SNRS]]></category>
		<category><![CDATA[vidéos]]></category>
		<category><![CDATA[802.1X]]></category>
		<category><![CDATA[assignement]]></category>
		<category><![CDATA[assignment]]></category>
		<category><![CDATA[cs acs]]></category>
		<category><![CDATA[dot1x]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[dynamique]]></category>
		<category><![CDATA[vlan]]></category>

		<guid isPermaLink="false">http://bmigette.fr/?p=22</guid>
		<description><![CDATA[Voici une petite video de configuration de vlans dynamiques via l&#8217;utilisation de dot1x/radius avec un serveur Cisco Secure Access Control Server (CS ACS). Commentaires audio en français et texte en anglais. Voir la vidéo]]></description>
			<content:encoded><![CDATA[<p>Voici une petite video de configuration de vlans dynamiques via l&#8217;utilisation de dot1x/radius avec un serveur Cisco Secure Access Control Server (CS ACS).<br />
Commentaires audio en français et texte en anglais.</p>
<p><a href="http://bmigette.fr/vid.php?video=dot1x_dynamic_vlans/dot1xvlans.swf" target="_blank">Voir la vidéo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bmigette.fr/2008/09/25/vlans-dynamiques-via-dot1x-et-serveur-radius-cs-acs/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

