<?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>Random notes &#38; other stuff... &#187; free</title>
	<atom:link href="http://leucos.lstilde.org/wp/tag/free/feed/" rel="self" type="application/rss+xml" />
	<link>http://leucos.lstilde.org/wp</link>
	<description>...about Linux, electronics, digital photography, whatever...</description>
	<lastBuildDate>Wed, 16 Dec 2009 00:29:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Configuration ADSL pour Free sur Cisco 1841</title>
		<link>http://leucos.lstilde.org/wp/2009/12/configuration-adsl-pour-free-sur-cisco-1841/</link>
		<comments>http://leucos.lstilde.org/wp/2009/12/configuration-adsl-pour-free-sur-cisco-1841/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 06:14:37 +0000</pubDate>
		<dc:creator>leucos</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[adsl]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[PPPoA]]></category>

		<guid isPermaLink="false">http://leucos.lstilde.org/wp/?p=532</guid>
		<description><![CDATA[(an english translation for this article is here)
Les clients de Free sont généralement contents&#8230; jusqu&#8217;a ce qu&#8217;ils aient besoin de support. C&#8217;est un problème avec tous les providers, mais chez Free en général, c&#8217;est gratiné.
Quand vous vous abonez chez Free, vous recevez une belle Freebox : un equipement faisant office de modem DSL, routeur, de [...]]]></description>
			<content:encoded><![CDATA[<p><em>(an english translation for this article is <a href="http://leucos.lstilde.org/wp/2009/05/cisco-1841-adsl-configuration-for-free-telecom/">here</a>)</em></p>
<p>Les clients de Free sont généralement contents&#8230; jusqu&#8217;a ce qu&#8217;ils aient besoin de support. C&#8217;est un problème avec tous les providers, mais chez Free en général, c&#8217;est gratiné.</p>
<p>Quand vous vous abonez chez Free, vous recevez une belle Freebox : un equipement faisant office de modem DSL, routeur, de FXS pour brancher le téléphone et parfois plus si vous avez la chance d&#8217;avoir la TV et d&#8217;autres services.services.</p>
<p>Mais quand vous ne voulez pas utiliser la FreeBox, ou qu&#8217;elle est morte, il y a des moyens alternatifs pour se connecter. Le plus simple c&#8217;est de trouver un modem DSL (un speedtouch par exemple), et d&#8217;utiliser un routeur pouvant faire du PPPoE (un Linksys WRT54GL + <a title="tomato firmware" href="http://www.polarcloud.com/tomato">firmware tomato</a> par exemple).</p>
<p>Vous pouvez aussi faire du PPPoA si vous avez un routeur avec une interface ATM. La configuration ci dessous peut être utilisée sur un routeur Cisco 1841 avec une carte ATM pour se connceter chez Free. La conf est facilement adaptable à d&#8217;autre modèles, le changements se limitant souvent aux noms d&#8217;interfaces.</p>
<p>Vous pouvez debugguer la connexion en tapant :</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">debug ppp neg<br />
debug ppp auth</div></div>
<p>Bonne chance.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:300px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">!<br />
version 12.4<br />
no service pad<br />
service timestamps debug datetime msec<br />
service timestamps log datetime msec<br />
service password-encryption<br />
!<br />
hostname c1841-pppoa<br />
!<br />
boot-start-marker<br />
boot-end-marker<br />
!<br />
enable secret 0 CHANGE_YOUR_ENABLE_PASSWORD<br />
!<br />
no aaa new-model<br />
!<br />
resource policy<br />
!<br />
memory-size iomem 5<br />
mmi polling-interval 60<br />
!<br />
no mmi auto-configure<br />
no mmi pvc<br />
mmi snmp-timeout 180<br />
ip subnet-zero<br />
ip cef<br />
!<br />
!<br />
no ip dhcp use vrf connected<br />
!<br />
! Global pool for the LAN clients<br />
ip dhcp pool CLIENTS<br />
import all<br />
network 192.168.0.0 255.255.255.0<br />
default-router 192.168.0.254<br />
dns-server 192.168.0.254<br />
!<br />
! Static assignements for specific clients<br />
ip dhcp pool pc1<br />
import all<br />
host 192.168.0.2 255.255.255.0<br />
client-identifier 0013.8dd7.2ada<br />
!<br />
ip dhcp pool pc2<br />
import all<br />
host 192.168.0.3 255.255.255.0<br />
client-identifier 0018.f327.3137<br />
!<br />
ip domain name whatever.it.is<br />
!<br />
! Use ssh<br />
! You need to issue<br />
! crypto key generate rsa<br />
! first<br />
ip ssh time-out 60<br />
ip ssh authentication-retries 2<br />
!<br />
! Lets define some user<br />
username _CHANGE_USERNAME password à CHANGE_USERPASSWORD<br />
!<br />
!<br />
!<br />
interface Null0<br />
no ip unreachables<br />
!<br />
! This is LAN side<br />
interface FastEthernet0/0<br />
description LAN connection<br />
ip address 192.168.0.254 255.255.255.0<br />
ip nat inside<br />
ip virtual-reassembly<br />
duplex auto<br />
speed auto<br />
no cdp enable<br />
!<br />
interface FastEthernet0/1<br />
no ip address<br />
speed auto<br />
!<br />
! This is the ATM interface<br />
! We\'re doing PPPoA<br />
interface ATM0/0/0<br />
no ip address<br />
no atm ilmi-keepalive<br />
dsl operating-mode auto<br />
pvc 8/35<br />
ubr 160<br />
encapsulation aal5mux ppp dialer<br />
dialer pool-member 1<br />
!<br />
!<br />
interface BRI0/1/0<br />
no ip address<br />
shutdown<br />
!<br />
! Dialer interface for PPP negotiation<br />
interface Dialer0<br />
ip address negotiated<br />
ip nat outside<br />
ip virtual-reassembly<br />
encapsulation ppp<br />
no cdp enable<br />
ppp authentication chap pap callin<br />
ppp chap hostname 04XXXXXXXX@freeadsl<br />
ppp chap password 0 CHANGE_TO_YOUR_CHAP_PASS<br />
!<br />
ppp pap sent-username 04XXXXXXXX@freeadsl password 0 CHANGE_TO_YOUR_CHAP_PASS<br />
! Required to get DNS servers<br />
ppp ipcp dns request<br />
!<br />
ip classless<br />
ip route 0.0.0.0 0.0.0.0 Dialer0<br />
!<br />
! Required to act as a DNS server for the LAN clients<br />
ip dns server<br />
!<br />
! Oh please no !<br />
no ip http server<br />
no ip http secure-server<br />
!<br />
! Do some NAT for LAN clients<br />
ip nat inside source list 10 interface Dialer0 overload<br />
access-list 10 permit 192.168.0.0 0.0.0.255<br />
!<br />
control-plane<br />
!<br />
line con 0<br />
stopbits 1<br />
line aux 0<br />
line vty 0 4<br />
password 0 CHANGE_TO_SOME_PASS<br />
login local<br />
! We just want ssh, not telnet<br />
transport input ssh<br />
!<br />
end</div></div>
]]></content:encoded>
			<wfw:commentRss>http://leucos.lstilde.org/wp/2009/12/configuration-adsl-pour-free-sur-cisco-1841/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
