{"id":181,"date":"2018-02-16T15:28:58","date_gmt":"2018-02-16T14:28:58","guid":{"rendered":"https:\/\/ccna.louviaux.org\/?p=181"},"modified":"2018-03-02T13:43:56","modified_gmt":"2018-03-02T12:43:56","slug":"les-commandes","status":"publish","type":"post","link":"https:\/\/ccna.louviaux.org\/index.php\/2018\/02\/16\/les-commandes\/","title":{"rendered":"Les commandes"},"content":{"rendered":"<h1>1\/La config de base<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">enable\r\nconfigure terminal\r\n    hostname <span style=\"color: #808080;\">R1<\/span>\r\n    no ip domain-lookup\r\n    security password min-length <span style=\"color: #808080;\">10<\/span>\r\n    enable secret <span style=\"color: #808080;\">class<\/span>\r\n    line con 0\r\n        password <span style=\"color: #808080;\">cisco<\/span>\r\n        exec-timeout <span style=\"color: #808080;\">50<\/span>\r\n        login\r\n        logging synchronous\r\n        exit\r\n    line vty 0 15\r\n        password <span style=\"color: #808080;\">cisco<\/span>\r\n        exec-timeout <span style=\"color: #808080;\">50<\/span>\r\n        login\r\n        exit\r\n    service password-encryption\r\n    banner motd #<span style=\"color: #808080;\">Unauthorized Access is prohibited!<\/span>#\r\n    int g0\/0\r\n        description <span style=\"color: #808080;\">Connection to R2<\/span>\r\n        ip address <span style=\"color: #808080;\">192.168.0.1 255.255.255.0<\/span>\r\n        no shutdown\r\n        speed auto\r\n        duplex auto\r\n        exit\r\n    exit\r\nclock set <span style=\"color: #808080;\">17:00:00 18 Feb 2018<\/span>\r\ncopy running-config startup-config\r\n\r\n<\/span><\/pre>\n<h1>2\/SSH<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tsecurity-password min-length <span style=\"color: #808080;\">10<\/span>\r\n\tlogin block-for <span style=\"color: #808080;\">60<\/span> attempts <span style=\"color: #808080;\">5<\/span> within <span style=\"color: #808080;\">60<\/span>\r\n\tusername <span style=\"color: #808080;\">Admin<\/span> privilege <span style=\"color: #808080;\">15<\/span> secret <span style=\"color: #808080;\">AdminPass<\/span>\r\n\tip domain-name <span style=\"color: #808080;\">CCNA-lab.com<\/span>\r\n\tcrypto key generate rsa general-key modulus <span style=\"color: #808080;\">1024<\/span>\r\n\tip ssh version 2\r\n\tline con 0\r\n\t\tlogin local\r\n\t\tno password\r\n\t\texec-timeout <span style=\"color: #808080;\">10<\/span>\r\n\t\ttransport preferred ssh\r\n\t\texit\t\t\r\n\tline vty 0 4\r\n\t\tlogin local\r\n\t\tno password\r\n\t\texec-timeout 5\r\n\t\ttransport input ssh\r\n\t\texit\r\n\t<span style=\"color: #008080;\">show ip ssh<\/span>\r\n\tip ssh timeout <span style=\"color: #808080;\">75<\/span>\r\n\tip ssh authentication-retries <span style=\"color: #808080;\">2\r\n\t\r\n<\/span><\/span><\/pre>\n<h1>3\/HTTP Server<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tip http server\r\n\tusername <span style=\"color: #808080;\">webuser<\/span> privilege <span style=\"color: #808080;\">15<\/span> secret <span style=\"color: #808080;\">webpass<\/span>\r\n\tip http authentication local\r\n<\/span><\/pre>\n<h1>4\/IPv6<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface g0\/0\r\n\t\tipv6 address <span style=\"color: #808080;\">2001:db8:acad:a::1\/64<\/span> (eui-64)\r\n\t\tipv6 address <span style=\"color: #808080;\">FE80::1<\/span> link-local\r\n\t\tno shutdown\r\n\t\texit\r\n\tipv6 unicast-routing\r\n\texit\r\n<\/span><\/pre>\n<h1>5\/Clock Rate<\/h1>\n<p>sur l&rsquo;interface DCE<\/p>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface s0\/0\/0\r\n\t\tip address <span style=\"color: #808080;\">10.1.1.2 255.255.255.252<\/span>\r\n\t\tclock rate <span style=\"color: #808080;\">128000<\/span>\r\n\t\tno shutdown\r\n\t\texit\r\n<\/span><\/pre>\n<h1>6\/Port Security<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface s0\/0\/1\r\n\t\tshutdown\r\n\t\texit\r\n\tinterface range f0\/1 - 8\r\n\t\tshutdown\r\n\t\texit\r\n\t<span style=\"color: #008080;\">show ip interface brief<\/span>\r\n\tno ip http server\r\n\t<span style=\"color: #008080;\">show ip http server status<\/span>\r\n\tinterface f0\/5\r\n\t\tshutdown\r\n\t\tswitchport port-security\r\n\t\tswitchport port-security mac-address (sticky) <span style=\"color: #808080;\">xxxx.xxxx.xxxx<\/span>\r\n\t\tswitchport port-security maximum <span style=\"color: #808080;\">10<\/span>\r\n\t\tswitchport port-security violation {protect | restrict | shutdown}\r\n\t\t<span style=\"color: #008080;\">show interfaces<\/span>\r\n\t\texit\r\n\tinterface f0\/5\r\n\t\tshutdown\r\n\t\tno shutdown\r\n\t\texit\r\n\t<span style=\"color: #008080;\">show port-security<\/span>\r\n\t<span style=\"color: #008080;\">show port-security address<\/span>\r\n<\/span><\/pre>\n<h1>7\/Routes Statiques<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tip route <span style=\"color: #808080;\">192.168.10.0 255.255.255.0<\/span> {<span style=\"color: #808080;\">192.168.1.2<\/span><span style=\"color: #993300;\">(recursive)<\/span> &amp;| <span style=\"color: #808080;\">g0\/1<\/span><span style=\"color: #993300;\">(Directly-connected)<\/span>}\r\n\tip route <span style=\"color: #808080;\">0.0.0.0 0.0.0.0<\/span> <span style=\"color: #808080;\">s0\/0\/1<\/span>\r\n\tipv6 route <span style=\"color: #808080;\">2001:db8:acad:a::\/64<\/span> {<span style=\"color: #808080;\">FC00::2<\/span><span style=\"color: #993300;\">(recursive)<\/span> | <span style=\"color: #808080;\">g0\/0<\/span><span style=\"color: #993300;\">(Directly-connected)<\/span>}\r\n\tipv6 route <span style=\"color: #808080;\">::\/0<\/span> <span style=\"color: #808080;\">S0\/0\/1\r\n<\/span><\/span><\/pre>\n<h1>8\/Rip V2<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\trouter rip\r\n\t\tversion 2\r\n\t\tpassive-interface <span style=\"color: #808080;\">g0\/1<\/span>\r\n\t\tnetwork <span style=\"color: #808080;\">172.30.0.0<\/span>\r\n\t\tnetwork <span style=\"color: #808080;\">10.0.0.0<\/span>\r\n\t\tno auto-summary\r\n\t\tdefault-information originate\r\n\t\t<span style=\"color: #008080;\">clear ip route *\r\n\t\tdebug ip rip\r\n\t\tshow ip route\r\n\t\tshow ip protocols\r\n<\/span>\texit<\/span><\/pre>\n<h1>9\/Vlan<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tvlan <span style=\"color: #808080;\">99<\/span>\r\n\t\tname <span style=\"color: #808080;\">Management<\/span>\r\n\tinterface vlan99\r\n\t\tip address <span style=\"color: #808080;\">192.168.1.2 255.255.255.0<\/span>\r\n\t\tno shutdown\r\n\t\texit\r\n\tinterface range f0\/1 - 24, g0\/1 - 2\r\n\t\tswitchport mode access\r\n\t\tswitchport access vlan99\r\n\t\texit\r\n\t<span style=\"color: #008080;\">show vlan brief<\/span>\r\n\tip default-gateway <span style=\"color: #808080;\">192.168.1.1<\/span>\r\n\t<span style=\"color: #008080;\">show vlan &lt;<span style=\"color: #808080;\">name<\/span>&gt;\r\n\tshow vlan &lt;<span style=\"color: #808080;\">id<\/span>&gt;<\/span>\r\n\tip routing <span style=\"color: #000000;\">(sur les switches Layer 3)\r\n<\/span><\/span><\/pre>\n<h1>10\/Mac Address Table<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tmac address-table static <span style=\"color: #808080;\">0050.56BE.6C89<\/span> vlan <span style=\"color: #808080;\">99<\/span> interface <span style=\"color: #808080;\">f0\/6<\/span>\r\n\t<span style=\"color: #008080;\">show mac address table<\/span> <span style=\"color: #008080;\">(dynamic)(<\/span><span style=\"color: #808080;\">xxxx.xxxx.xxxx<\/span><span style=\"color: #008080;\">)<\/span>\r\n\t<span style=\"color: #008080;\">clear mac address table<\/span> <span style=\"color: #008080;\">(dynamic)\r\n<\/span><\/span><\/pre>\n<h1>11\/Trunk<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface f0\/6\r\n\t\tswitchport mode trunk\r\n\t\tswitchport trunk native vlan\r\n\t\tswitchport trunk allowed vlan\r\n\t\tend\r\n<span style=\"color: #008080;\">\tshow interface f0\/6 switchport\r\n\tshow switchport trunk native vlan\r\n<\/span>\t\r\n\tinterface f0\/1\r\n\t\tswitchport mode dynamic desirable\r\n<\/span><\/pre>\n<h1>12\/Router-on-a-Stick<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface g0\/0.<span style=\"color: #808080;\">10<\/span>\r\n\t\tencapsulation dot1q <span style=\"color: #808080;\">10<\/span>\r\n\t\tip address <span style=\"color: #808080;\">172.17.10.1 255.255.255.0<\/span>\r\n\t\texit\r\n\tinterface g0\/0.<span style=\"color: #808080;\">30<\/span>\r\n\t\tencapsulation dot1q <span style=\"color: #808080;\">30<\/span>\r\n\t\tip address <span style=\"color: #808080;\">172.17.30.1 255.255.255.0<\/span>\r\n\t\texit\r\n\tinterface g0\/0\r\n\t\tno shutdown <span style=\"color: #000000;\">(ou no shutdown sur chaque sous-interface)<\/span>\r\n\t\texit\r\n<span style=\"color: #008080;\">\tshow vlan\r\n\tshow ip route\r\n<\/span><\/span><\/pre>\n<h1>13\/ACL<\/h1>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\taccess-list <span style=\"color: #808080;\">1<\/span> remark <span style=\"color: #808080;\">Allow R1 Lan Access<\/span>\r\n\taccess-list <span style=\"color: #808080;\">1<\/span> permit <span style=\"color: #808080;\">192.168.10.0 0.0.0.255<\/span>\r\n\taccess-list <span style=\"color: #808080;\">1<\/span> permit <span style=\"color: #808080;\">192.168.30.0 0.0.0.255<\/span>\r\n\taccess-list <span style=\"color: #808080;\">1<\/span> deny any\r\n\t\r\n\tinterface g0\/1\r\n\t\tip access-group <span style=\"color: #808080;\">1<\/span> out\r\n\t\t<span style=\"color: #008080;\">show access-list <span style=\"color: #808080;\">1<\/span>\r\n\t\tshow ip interface\r\n\t\tshow access-lists<\/span>\r\n\t\texit\r\n\t\r\n\tip access-list standard <span style=\"color: #808080;\">Branch-Office<\/span>\r\n\t\tpermit host <span style=\"color: #808080;\">192.168.20.3<\/span>\r\n\t\tpermit <span style=\"color: #808080;\">192.168.40.0 0.0.0.255<\/span>\r\n\t\tend\r\n\tinterface g0\/1\r\n\t\tip access-group <span style=\"color: #808080;\">Branch-Office<\/span> out\r\n\t\texit\r\n\t\t\r\n\tip access-list <span style=\"color: #808080;\">Branch-Office<\/span>\r\n\t\t<span style=\"color: #808080;\">30<\/span> permit <span style=\"color: #808080;\">209.165.200.224 0.0.0.31<\/span>\r\n\t\t<span style=\"color: #808080;\">40<\/span> deny any\r\n\t\tend\r\n\tip interface g0\/1\r\n\t\tip access-group <span style=\"color: #808080;\">Branch-Office<\/span> out\r\n\t\texit\r\n\t\r\n\t<span style=\"color: #008080;\">show ip access-lists<\/span><\/span>\r\n\t\r\nSur les lines VTY, c'est \"<span style=\"color: #0000ff;\">access-class<\/span>\" !\r\n<\/pre>\n<h1>14\/DHCP<\/h1>\n<h2>IPv4<\/h2>\n<h3>1\/ Configurer un routeur comme serveur DHCP:<\/h3>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tip dhcp excluded-address <span style=\"color: #808080;\">192.168.0.1 192.168.0.9<\/span>\r\n\tip dhcp excluded-address <span style=\"color: #808080;\">192.168.1.1 192.168.1.9<\/span>\r\n\tip dhcp pool <span style=\"color: #808080;\">R1G1<\/span>\r\n\t\tnetwork <span style=\"color: #808080;\">192.168.1.0 25.255.255.0<\/span>\r\n\t\tdefault-router <span style=\"color: #808080;\">192.168.1.1<\/span>\r\n\t\tdns-server <span style=\"color: #808080;\">209.165.200.225<\/span>\r\n\t\tdomain-name <span style=\"color: #808080;\">ccna-lab.com<\/span>\r\n\t\tlease <span style=\"color: #808080;\">2<\/span>\r\n\t\texit\r\n\tip dhcp pool <span style=\"color: #808080;\">R1G0<\/span>\r\n\t\tnetwork <span style=\"color: #808080;\">192.168.0.0 255.255.255.0<\/span>\r\n\t\tdefault-router <span style=\"color: #808080;\">192.168.0.1<\/span>\r\n\t\tdns-server <span style=\"color: #808080;\">209.165.200.225<\/span>\r\n\t\tdomain-name <span style=\"color: #808080;\">ccna-lab.com<\/span>\r\n\t\tlease <span style=\"color: #808080;\">2<\/span>\r\n\t\texit<\/span>\r\n\t<span style=\"color: #008080;\">show ip dhcp {binding | pool | server statistics}\r\n<\/span>\t<span style=\"color: #008080;\">debug ip dhcp server event<\/span>\r\n\t<span style=\"color: #008080;\">undebug all<\/span>\r\n\t<span style=\"color: #008080;\">no service dhcp\r\n<\/span><\/pre>\n<h3>2\/ Configurer un routeur comme client DHCP:<\/h3>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface g0\/1\r\n\t\tip address dhcp\r\n\t\tno shutdown\r\n\t\tend<\/span>\r\n\t<span style=\"color: #008080;\">show ip dhcp conflict<\/span>\r\n<\/pre>\n<h3>3\/ Configurer un routeur comme relay DHCP:<\/h3>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface g0\/0\r\n\t\tip helper-address <span style=\"color: #808080;\">192.168.2.254<\/span>\r\n\t\texit\r\n\tinterface g0\/1\r\n\t\tip helper-address <span style=\"color: #808080;\">192.168.2.254<\/span>\r\n\t\texit\r\n<\/span><\/pre>\n<h2>IPv6<\/h2>\n<p>Rappel:<br \/>\n-Adresse link-local de tous les routeurs ipv6: FE02::2<br \/>\n-Adresse link-local de tous les noeuds ipv6: FE02::1<\/p>\n<h3>1\/ Configurer un routeur comme server DHCPv6 Stateless:<\/h3>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tipv6 unicast-routing\r\n\tipv6 dhcp pool <span style=\"color: #808080;\">POOLv6<\/span>\r\n\t\tdns-server &lt;<span style=\"color: #808080;\">address<\/span>&gt;\r\n\t\tipv6 dhcp server <span style=\"color: #808080;\">POOLv6<\/span>\r\n\t\tipv6 nd managed-config-flag\r\n\t\texit<\/span>\r\n<\/pre>\n<h3>2\/ Configurer un routeur comme client DHCPv6 Stateless:<\/h3>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface g0\/0\r\n\t\tipv6 enable\r\n\t\tipv6 address autoconfig\r\n<\/span><\/pre>\n<h3>3\/ Configurer un routeur comme server DHCPv6 Statefull:<\/h3>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tipv6 unicast-routing\r\n\tipv6 dhcp pool <span style=\"color: #808080;\">POOLv6<\/span>\r\n\t\taddress <span style=\"color: #808080;\">2001:db8:acad:1::\/64<\/span>\r\n\t\tlifetime infinite\r\n\t\tdns-server &lt;<span style=\"color: #808080;\">address<\/span>&gt;\r\n ipv6 dhcp server POOLv6\r\n ipv6 nd managed-config-flag\r\n exit\r\n<\/span><\/pre>\n<h3>4\/ Configurer un routeur comme client DHCPv6 Statefull:<\/h3>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface g0\/1\r\n\t\tipv6 enable\r\n\t\tipv6 address dhcp\r\n\r\n\t<span style=\"color: #008080;\">show ipv6 dhccppool\r\n\tshow ipv6 interfaces\r\n\tdebug ipv6 dhcp detail\r\n\tshow ipv6 dhcp binding\r\n<\/span><\/span><\/pre>\n<h3>5\/Configurer un routeur comme relay DHCPv6:<\/h3>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tinterface g0\/1\r\n\t\tipv6 dhcp relay destination &lt;<span style=\"color: #808080;\">address<\/span>&gt;\r\n\t\tend\r\n<\/span><\/pre>\n<address>\u00a0<\/address>\n<h1>15\/NAT-PAT<\/h1>\n<p>&nbsp;<\/p>\n<h2>NAT Statique:<\/h2>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tip nat inside source static <span style=\"color: #808080;\">192.168.1.20 209.165.200.225<\/span>\r\n\tinterface g0\/1\r\n\t\tip nat inside\r\n\t\texit\r\n\tinterface s0\/0\/1\r\n\t\tip nat outside\r\n\t\texit\r\n\t<span style=\"color: #008080;\">show ip nat translations<\/span>\r\n\t\r\n\t<span style=\"color: #008080;\">clear ip nat translation *\r\n\tclear ip nat statistics\r\n<\/span><\/span><\/pre>\n<h2>Nat Dynamique (et PAT si \u00ab\u00a0overload\u00a0\u00bb):<\/h2>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\taccess-list <span style=\"color: #808080;\">1<\/span> permit <span style=\"color: #808080;\">192.168.0.1 0.0.0.255<\/span>\r\n\tip nat pool <span style=\"color: #808080;\">ACCESS<\/span> <span style=\"color: #808080;\">209.165.200.242 209.165.200.254 <\/span>netmask <span style=\"color: #808080;\">255.255.255.224<\/span>\r\n\tip nat inside source list <span style=\"color: #808080;\">1<\/span> pool <span style=\"color: #808080;\">ACCESS<\/span> (overload)\r\n<\/span><\/pre>\n<h1>16\/CDP &amp; LLDP<\/h1>\n<p>&nbsp;<\/p>\n<h2>CDP<\/h2>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">show cdp\r\n(no) cdp run\r\n\tend\r\nshow cdp interfaces\r\nshow cdp neighbors (detail)\r\nno cdp enable <span style=\"color: #000000;\">(sur un routeur de bordure)<\/span>\r\n\tend\r\n<\/span><\/pre>\n<h2>LLDP<\/h2>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">show lldp\r\nlldp run\r\nshow lldp neighbors (detail)\r\n<\/span><\/pre>\n<h1>17\/Syslog<\/h1>\n<p>E-A-C-E-W-N-I-D<\/p>\n<p>d&rsquo;abord:<\/p>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">show running-config | include timestamp\r\n<\/span><\/pre>\n<p>Si timestamp n&rsquo;est pas actif:<\/p>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tservice timestamp log dateline mse\r\n<\/span><\/pre>\n<p>ensuite:<\/p>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tlogging host <span style=\"color: #808080;\">172.16.2.3<\/span>\r\n\t(show logging)\r\n\t(logging trap ?)\r\n\tlogging trap {<span style=\"color: #808080;\">4<\/span> | <span style=\"color: #808080;\">warnings<\/span>}\r\n<\/span><\/pre>\n<h1>18\/NTP<\/h1>\n<p>&nbsp;<\/p>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">show clock\r\nclock set<\/span> <span style=\"color: #808080;\">17:00:00 18 Feb 2018\r\n<\/span><\/pre>\n<h2>Master<\/h2>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tntp master<\/span> <span style=\"color: #808080;\">5\r\n<\/span><\/pre>\n<h2>Client<\/h2>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">configure terminal\r\n\tntp server <span style=\"color: #808080;\">10.1.1.1<\/span>\r\n\tntp update-calendar<\/span>\r\n\t\r\n\t<span style=\"color: #008080;\">show ntp associations<\/span>\r\n<\/pre>\n<h1>19\/R\u00e9cup\u00e9ration du mot de passe<\/h1>\n<p>1\/D\u00e9brancher l&rsquo;appareil<\/p>\n<p>2\/Au cours du reboot, coupure franche (Alt+B sous TeraTerm)<\/p>\n<p>puis:<\/p>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">\tconfreg 0x2142\r\n\treset\r\n<\/span><\/pre>\n<p>3\/Apr\u00e8s reboot:<\/p>\n<pre class=\"brush: c;\"><span style=\"color: #0000ff;\">\tcopy startup-config running-config\r\n\tno password\r\n\tno secret\r\n\tconfig-register 0x2102\r\n\tcopy running-config startup-config\r\n\treload\r\n<\/span><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>1\/La config de base enable configure terminal hostname R1 no ip domain-lookup security password min-length 10 enable secret class line con 0 password cisco exec-timeout 50 login logging synchronous exit line vty 0 15 password cisco exec-timeout 50 login exit service password-encryption banner motd #Unauthorized Access is prohibited!# int g0\/0 description Connection to R2 ip &hellip; <a href=\"https:\/\/ccna.louviaux.org\/index.php\/2018\/02\/16\/les-commandes\/\" class=\"more-link\">Continuer la lecture de <span class=\"screen-reader-text\">Les commandes<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0},"categories":[5],"tags":[],"_links":{"self":[{"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/posts\/181"}],"collection":[{"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/comments?post=181"}],"version-history":[{"count":29,"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/posts\/181\/revisions"}],"predecessor-version":[{"id":221,"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/posts\/181\/revisions\/221"}],"wp:attachment":[{"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/media?parent=181"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/categories?post=181"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ccna.louviaux.org\/index.php\/wp-json\/wp\/v2\/tags?post=181"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}