Pagina 1 di 1

Cercasi configurazione per cisco soho 77 e infostrada

Inviato: gio 12 mag , 2005 8:19 pm
da loziognappo
Come da oggetto, ho fatto un contratto con infostrada per avere la 4 mega bit. Ieri mi hanno attivato il servizio e da oggi scaica a circa 400kb.

Ora però vorrei utilizzare il mio soho 77.

La linea la hanno configurata come pppoe e llc con ip dinamico.

Qualcuno può aiutarmi con una conf per tale configurazione?

Tnk a priori.

Inviato: gio 12 mag , 2005 8:27 pm
da loziognappo
Questa è la conf che ho provato con i dati sensibili sostituiti da ____:

Using 1134 out of 131072 bytes
!
version 12.1
no service single-slot-reload-enable
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
logging rate-limit console 10 except errors
enable secret 5 ____
!
ip subnet-zero
no ip finger
!
no ip dhcp-client network-discovery
!
!
!
interface Ethernet0
ip address 192.168.7.11 255.255.255.240
ip nat inside
!
interface ATM0
no ip address
no atm ilmi-keepalive
pvc 8/35
encapsulation aal5snap
protocol ppp dialer
dialer pool-member 1
!
dsl operating-mode auto
!
interface Dialer0
ip address negotiated
ip nat outside
encapsulation ppp
dialer pool 1
ppp chap hostname ____
ppp chap password 7 ____
ppp pap sent-username ____ password 7 ____
!
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer0
no ip http server
!
ip nat inside source list 1 interface Dialer0 overload
access-list 1 permit 192.168.7.0 0.0.0.255
!
line con 0
transport input none
stopbits 1
line vty 0 4
password ____
login
!
scheduler max-task-time 5000
end

Inviato: gio 12 mag , 2005 10:32 pm
da MrCisco
la conf mi sembra abbastanza a posto, non funziona? anche se ho come l'impressione che stia andando in pppoa.
Comunque, i signori Cisco dicono anche:

Codice: Seleziona tutto

! 
vpdn enable 
no vpdn logging

!--- Default.

! 
vpdn-group pppoe 
 request-dialin     
 
!--- This is the PPPoE client requesting to establish a session  
 !--- with the aggregation unit (6400 NRP). 
 
  protocol pppoe 
! 
Questo estratto da una configurazione base offerta da cisco systems stessa che recita:

Codice: Seleziona tutto

! 
vpdn enable 
no vpdn logging

!--- Default.

! 
vpdn-group pppoe 
 request-dialin     
 
!--- This is the PPPoE client requesting to establish a session  
 !--- with the aggregation unit (6400 NRP). 
 
  protocol pppoe 
! 


!--- Internal Ethernet network.
 
! 
interface Ethernet0 
 ip address 10.92.1.182 255.255.255.0 
 ip nat inside 
  


!--- DSL interface.
 
! 
interface ATM0 
 no ip address 
 no atm ilmi-keepalive
 bundle-enable
 dsl operating-mode auto
 hold-queue 224 in
 
!--- All defaults.

  


!--- PPPoE runs on top of AAL5SNAP, but the 
!--- encap aal5snap command is not used.
  
! 
interface ATM0.1 point-to-point 
 pvc 1/1 
  pppoe-client dial-pool-number 1 
  
!--- pvc 1/1 is an example value that must be changed 
  !--- to match the value used by the ISP. 

 ! 



!--- The PPPoE client code ties into a dialer interface upon  
!--- which a virtual-access interface is cloned.  

! 
interface Dialer1 
 ip address negotiated 
 ip mtu 1492
 
!--- Ethernet MTU is 1500 by default -- 1492 + PPPoE headers = 1500

 ip nat outside 
 encapsulation ppp 
 dialer pool 1
 
!--- Ties to ATM interface.
  
 ppp authentication chap callin 
 ppp chap hostname <username> 
 ppp chap password <password> 
! 

!--- Note: The ISP will instruct you regarding the 
!--- type of authentication to use. 
!--- To change from PPP CHAP to PPP PAP, replace
!--- ppp authentication chap callin 
!--- ppp chap hostname <username> 
!--- ppp chap password <password>   
!--- with ppp authentication pap callin
!--- ppp pap sent-username <username> password <password>




!--- For NAT, overload on the Dialer1 interface 
!--- and add a default route out since dialer IP address can change. 
  
ip nat inside source list 1 interface Dialer1 overload 
ip classless 
ip route 0.0.0.0 0.0.0.0 dialer1 
no ip http server 
! 
access-list 1 permit 10.92.1.0 0.0.0.255

!--- For NAT.

! 
Adattandola ai propri scopi...
questo a parte, una curiosità, se dici:
ip address 192.168.7.11 255.255.255.240
perché:
access-list 1 permit 192.168.7.0 0.0.0.255
le subnet sono diverse e non vedo il motivo

Inviato: gio 12 mag , 2005 10:44 pm
da loziognappo
Ciao e grazie per l'interessamento.

La linea è sicuramente configurata in pppoe, infatti il router che sto attualemte utilizzando, è settato in pppoe ed LLC e funziona perfettamente. Per quanto concerne l'access list, cosa dovrei mettere? 0.0.0.14??

Come posso vedere se almeno si autentifica e prende l'ip dinamico???

Bye.

Inviato: ven 13 mag , 2005 9:15 am
da loziognappo
Quindi protrei adattare la conf da te postata sopra per la mia esigenza.
Non sono convintissimo di questo punto:

!--- Note: The ISP will instruct you regarding the
!--- type of authentication to use.
!--- To change from PPP CHAP to PPP PAP, replace
!--- ppp authentication chap callin
!--- ppp chap hostname <username>
!--- ppp chap password <password>
!--- with ppp authentication pap callin
!--- ppp pap sent-username <username> password <password>

Io nella mia conf avevo messo:

ppp chap hostname ____
ppp chap password 0 ____
ppp pap sent-username ____ password 0 ____

Per cui era errata, quale delle 2 devo mettere....... questa:
!--- ppp authentication chap callin
!--- ppp chap hostname <username>
!--- ppp chap password <password>

o questa:
!--- ppp pap sent-username <username> password <password>

Inoltre da dove si evince che la conf è per LLC???

Grazie per le info che vorrete darmi.

Bye.

Inviato: dom 15 mag , 2005 11:55 pm
da loziognappo
Ancora non ne sono venuto a galla. Il router non ne vuole sapere di funzionare con questa linea libero!!
Credete che se lo configuro da interfaccia web, dovrebbe essere più semplice???

Bye.

Configurazione SOHO77 e ADSL Telecom

Inviato: lun 15 mar , 2010 6:34 pm
da jackpennello
Buongiorno a tutti sono nuovo e sto agli "antipasti" con i router CISCO (sto studiando per la CCNA), volevo postare la confgiruazione ma non riesco

facciamo un'interfaccia per volta

Il problema è che non si collega alla rete..... :-( qualcuno può aiutarmi?

Grazie

interface Ethernet0
ip address 192.168.1.163 255.255.255.0
ip nat inside
ip tcp adjust-mss 1452
hold-queue 100 out
!
interface ATM0
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
pvc 8/35
encapsulation aal5snap
protocol ppp dialer
dialer pool-member 1
!
!

Configurazione SOHO77 e ADSL Telecom

Inviato: lun 15 mar , 2010 6:35 pm
da jackpennello
Current configuration : 1386 bytes
!
version 12.3
no service pad
service timestamps debug datetime msec localtime show-timezone
service timestamps log datetime msec localtime show-timezone
service password-encryption
service sequence-numbers
!
hostname xxxxxx
!
boot-start-marker
boot-end-marker
!
logging exception 100000
logging count
logging queue-limit 10000
logging buffered 150000 notifications
logging console critical
!
ip subnet-zero
ip name-server 212.216.112.112
ip name-server 212.216.172.62
ip name-server 208.67.222.222
ip name-server 208.67.220.220
!
!
!
!
interface Ethernet0
ip address 192.168.1.163 255.255.255.0
ip nat inside
ip tcp adjust-mss 1452
hold-queue 100 out
!
interface ATM0
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
pvc 8/35
encapsulation aal5snap
protocol ppp dialer
dialer pool-member 1
!
!
interface Dialer0
ip address negotiated
ip mtu 1492
ip nat outside
encapsulation ppp
dialer pool 1
ppp chap hostname xxxxxx
ppp chap password 7 xxxxxxxx
ppp pap sent-username xxxxxxx password 7 xxxxxxxxxx
!
ip nat inside source list 1 interface Dialer0 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer0
no ip http server
!
logging history notifications
access-list 1 permit 192.168.1.0 0.0.0.255
!
line con 0
stopbits 1
line vty 0 4
password 7 140E1D041455392E273D213C360A
login
!
scheduler max-task-time 5000
end