Cisco 1841 + Neostrada

Problemy z pozostałymi technologiami (SDH, IronPort, WAAS itp.)
Wiadomość
Autor
berstrong
member
member
Posty: 20
Rejestracja: 28 cze 2009, 22:28

Cisco 1841 + Neostrada

#1

#1 Post autor: berstrong »

Schemat

LAN F0/0-(Router)-F0/1------ Modem (Spedstram 4100 w trybie bridge)

Próbuję zestawić połączenie przez PPPoE, (z komputera działa ok) ale ciągle w logach dostaje:

Kod: Zaznacz cały

no free dialer - starting fast idle timer
interfejs fizyczny przypisany do dial poola, co może być nie tak ?
poniżej config:

Kod: Zaznacz cały


dot11 syslog
ip source-route
!
!
ip cef
ip domain name home.local
!
multilink bundle-name authenticated
!
!
!
interface FastEthernet0/0
 ip address 10.10.10.1 255.255.255.0
 no ip proxy-arp
 ip flow ingress
 ip flow egress
 ip nat inside
 ip virtual-reassembly in
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 no ip proxy-arp
 ip virtual-reassembly in
 duplex auto
 speed auto
 pppoe enable group global
 pppoe-client dial-pool-number 1
!
interface Dialer0
 ip address negotiated
 ip mtu 1492
 ip nat outside
 ip virtual-reassembly in
 encapsulation ppp
 shutdown
 dialer pool 1
 dialer string "#48"
 dialer-group 1
 ppp authentication chap callin
 ppp chap hostname xxxxxxxx@neostrada.pl
 ppp chap password 0 xxxxxx
!
ip forward-protocol nd

!
!
ip nat inside source list ACL_NAT interface Dialer0 overload
ip route 0.0.0.0 0.0.0.0 Dialer0
!
ip access-list standard ACL_NAT
 permit 10.10.10.0 0.0.0.255
!

dialer-list 1 protocol ip permit




Seba
CCIE/CCDE Site Admin
CCIE/CCDE Site Admin
Posty: 6223
Rejestracja: 15 lip 2004, 20:35
Lokalizacja: Warsaw, PL

#2

#2 Post autor: Seba »

Interfejs Dialer jest w stanie "shutdown", rozumiem, że to chwilowe tylko.

Po co w konfiguracji int Dialer masz "dialer-string"?
"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe."
A. Einstein

berstrong
member
member
Posty: 20
Rejestracja: 28 cze 2009, 22:28

#3

#3 Post autor: berstrong »

Tak to tylko chwilowe, normalnie Dialer0 jest włączony

jeśli nie ustawie "dialer-string" jakiejś wartości dostaje w logach:

Kod: Zaznacz cały

 "Cannot place call, no dialer string set"
wersja IOS Version 15.1(3)T

lbromirs
CCIE
CCIE
Posty: 4101
Rejestracja: 30 lis 2006, 08:44

Re: Cisco 1841 + Neostrada

#4

#4 Post autor: lbromirs »

Dokonfiguruj grupę VPDN a potem podnieś Dialer i obserwuj logi:

Kod: Zaznacz cały

vpdn enable
 !
 vpdn-group 1
  request-dialin
   protocol pppoe
 !

Seba
CCIE/CCDE Site Admin
CCIE/CCDE Site Admin
Posty: 6223
Rejestracja: 15 lip 2004, 20:35
Lokalizacja: Warsaw, PL

#5

#5 Post autor: Seba »

Ani dialer string ani tak naprawdę dialer group w konfiguracji pod PPPoE nie są potrzebne. Przerób interfejs dialer na takie coś:

Kod: Zaznacz cały

interface Dialer0 
 ip address negotiated 
 ip mtu 1492 
 ip nat outside 
 ip virtual-reassembly in 
 encapsulation ppp 
 dialer pool 1 
 dialer persistent
 ppp authentication chap callin 
 ppp chap hostname xxxxxxxx@neostrada.pl 
 ppp chap password 0 xxxxxx 
Oczywiście zakładam, że dane do logowania używasz poprawne.
"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe."
A. Einstein

berstrong
member
member
Posty: 20
Rejestracja: 28 cze 2009, 22:28

#6

#6 Post autor: berstrong »

Próbowałem robić jak koledzy powyżej, ale z tym samym rezultatem w kółko te same błędy w końu użyłem Cisco Config Professional który wygenerował mi coś takiego:

na moje oko to jest ten sam config co robiłem ręcznie z tą różinicą że teraz działa, dlaczego ???

Kod: Zaznacz cały


dot11 syslog
ip source-route
!

!
ip cef
ip domain name home.local
!
multilink bundle-name authenticated
!
!
interface Loopback0
 no ip address
!
interface FastEthernet0/0
 ip address 10.10.10.1 255.255.255.0
 no ip proxy-arp
 ip flow ingress
 ip flow egress
 ip nat inside
 ip virtual-reassembly
 ip tcp adjust-mss 1412
 duplex auto
 speed auto
!
interface FastEthernet0/1
 description $ETH-WAN$
 no ip address
 no ip proxy-arp
 ip flow ingress
 ip flow egress
 ip virtual-reassembly
 duplex auto
 speed auto
 pppoe enable group global
 pppoe-client dial-pool-number 1
!
interface Dialer1
 ip address negotiated
 ip mtu 1452
 ip nat outside
 ip virtual-reassembly
 encapsulation ppp
 dialer pool 1
 dialer-group 2
 ppp authentication chap callin
 ppp chap hostname xxxx@neostrada.pl
 ppp chap password 0 xxxx
!
ip forward-protocol nd
ip route 0.0.0.0 0.0.0.0 Dialer1

no ip http secure-server
!
!
ip nat inside source list 1 interface Dialer1 overload


access-list 1 remark INSIDE_IF=FastEthernet0/0
access-list 1 remark CCP_ACL Category=2
access-list 1 permit 10.10.10.0 0.0.0.255

dialer-list 2 protocol ip permit
!
!

lbromirs
CCIE
CCIE
Posty: 4101
Rejestracja: 30 lis 2006, 08:44

#7

#7 Post autor: lbromirs »

berstrong pisze:Próbowałem robić jak koledzy powyżej, ale z tym samym rezultatem w kółko te same błędy w końu użyłem Cisco Config Professional który wygenerował mi coś takiego:
Czyli nagle router nie wymaga już od Ciebie wpisania 'dialer-string'? Jak to możliwe?

Ciesze się, że działa. Następnym razem jeśli mamy Ci pomagać, dokumentuj dokładnie to co się dzieje, a nie z pamięci lub zmieniając po drodze wersje softu, etc.

ODPOWIEDZ