Options

OSPF problem

pattyricia_08pattyricia_08 Registered Users Posts: 5 ■□□□□□□□□□
hellow guys i need your help about this

FastEthernet0/0 unassigned YES unset up up

FastEthernet0/0.10 172.57.1.174 YES manual up up

FastEthernet0/0.20 172.57.1.190 YES manual up up

FastEthernet0/0.30 172.57.1.198 YES manual up up

FastEthernet0/0.40 172.57.1.206 YES manual up up

FastEthernet0/0.99 172.57.1.158 YES manual up up

FastEthernet0/1 198.198.1.3 YES manual up up

Serial0/0/0 unassigned YES unset up up

Serial0/0/0.102 172.57.1.217 YES manual up up

Serial0/0/0.103 172.57.1.209 YES manual up up

Serial0/0/1 172.57.1.214 YES manual up down

Serial0/1/0 200.1.1.2 YES manual up up

why does the protocol is down, i really don't know how to troubleshoot it, thanks for your help
pro.PNG 12.4K

Comments

  • Options
    prtechprtech Member Posts: 163
    How is this an OSPF problem? Do you have the clock rate configured? Paste your configs here or upload your packet tracer file.
    If at first you do succeed, try something harder.
  • Options
    pattyricia_08pattyricia_08 Registered Users Posts: 5 ■□□□□□□□□□
    my friend told me that it's the protocol, i already configure a clock rate

    hostname HQ
    !
    !
    !
    !
    ip dhcp excluded-address 172.57.1.172 172.57.1.174
    ip dhcp excluded-address 172.57.1.196 172.57.1.198
    ip dhcp excluded-address 172.57.1.156 172.57.1.158
    ip dhcp excluded-address 172.57.1.188 172.57.1.190
    !
    ip dhcp pool Accounts_VLAN10
    network 172.57.1.160 255.255.255.240
    default-router 172.57.1.174
    dns-server 198.198.1.2
    ip dhcp pool ITSupport_VLAN30
    network 172.57.1.192 255.255.255.248
    default-router 172.57.1.198
    dns-server 198.198.1.2
    ip dhcp pool Personnel_VLAN20
    network 172.57.1.176 255.255.255.240
    default-router 172.57.1.190
    dns-server 198.198.1.2
    !
    !
    !
    !
    !
    !
    !
    no ip domain-lookup
    !
    !
    spanning-tree mode pvst
    !
    !
    !
    !
    interface FastEthernet0/0
    no ip address
    duplex auto
    speed auto
    !
    interface FastEthernet0/0.10
    encapsulation dot1Q 10
    ip address 172.57.1.174 255.255.255.240
    ip nat inside
    !
    interface FastEthernet0/0.20
    encapsulation dot1Q 20
    ip address 172.57.1.190 255.255.255.240
    ip nat inside
    !
    interface FastEthernet0/0.30
    encapsulation dot1Q 30
    ip address 172.57.1.198 255.255.255.248
    ip nat inside
    !
    interface FastEthernet0/0.40
    encapsulation dot1Q 40
    ip address 172.57.1.206 255.255.255.248
    ip nat inside
    !
    interface FastEthernet0/0.99
    encapsulation dot1Q 99
    ip address 172.57.1.158 255.255.255.224
    ip nat inside
    !
    interface FastEthernet0/1
    ip address 198.198.1.3 255.255.255.0
    ip nat inside
    duplex auto
    speed auto
    !
    interface Serial0/0/0
    no ip address
    encapsulation frame-relay
    !
    interface Serial0/0/0.102 point-to-point
    description HQ_to_Engineering
    ip address 172.57.1.217 255.255.255.252
    frame-relay interface-dlci 102
    ip nat inside
    clock rate 2000000
    !
    interface Serial0/0/0.103 point-to-point
    description HQ_to_Sales
    ip address 172.57.1.209 255.255.255.252
    frame-relay interface-dlci 103
    ip nat inside
    clock rate 2000000
    !
    interface Serial0/0/1
    bandwidth 64
    ip address 172.57.1.214 255.255.255.252
    encapsulation ppp
    ppp authentication chap
    ip nat inside
    clock rate 64000
    !
    interface Serial0/1/0
    ip address 200.1.1.2 255.255.255.0
    ip nat outside
    !
    interface Serial0/1/1
    no ip address
    clock rate 2000000
    shutdown
    !
    interface Vlan1
    no ip address
    shutdown
    !
    router ospf 1
    log-adjacency-changes
    passive-interface FastEthernet0/0
    passive-interface FastEthernet0/1
    passive-interface Serial0/0/1
    passive-interface Serial0/1/0
    passive-interface FastEthernet0/0.10
    passive-interface FastEthernet0/0.20
    passive-interface FastEthernet0/0.30
    passive-interface FastEthernet0/0.40
    passive-interface FastEthernet0/0.99
    network 172.57.1.208 0.0.0.3 area 0
    network 172.57.1.212 0.0.0.3 area 0
    network 172.57.1.216 0.0.0.3 area 0
    network 172.57.1.160 0.0.0.15 area 0
    network 172.57.1.176 0.0.0.15 area 0
    network 172.57.1.192 0.0.0.7 area 0
    network 172.57.1.128 0.0.0.31 area 0
    !
    router rip
    !
    ip nat pool NAT_POOL 199.199.199.1 199.199.199.1 netmask 255.255.255.0
    ip nat inside source list NAT_ACL pool NAT_POOL overload
    ip classless
    ip route 0.0.0.0 0.0.0.0 Serial0/1/0
    !
    !
    !
    !
    !
    !
    !
    line con 0
    line vty 0 4
    login
    !
    !
    !
    end
  • Options
    pattyricia_08pattyricia_08 Registered Users Posts: 5 ■□□□□□□□□□
    thank you for your help
  • Options
    prtechprtech Member Posts: 163
    The protocol you are having issues with is PPP. Try issuing this debug command: debug ppp authentication. You are missing something crucial.

    Hint: What do you need for authentication?
    If at first you do succeed, try something harder.
  • Options
    pattyricia_08pattyricia_08 Registered Users Posts: 5 ■□□□□□□□□□
    uhm, when i type debug pp authentication s0/0/1 is closed

    what is missing, another clue please :D
  • Options
    goldenlightgoldenlight Member Posts: 378 ■■□□□□□□□□
    I agree withprtech
    user-offline.png there is definitely something going on with PPP authentication. check to make sure username and password is correct.
    Check Protocol Encapsulation..
    The Only way to do great work is to love what you do. If you haven't found it keep looking. Don't settle - Steve Jobs
  • Options
    prtechprtech Member Posts: 163
    Like goldenlight said, check the username and password. Based on the config you posted, you do not have that configured.
    If at first you do succeed, try something harder.
  • Options
    pattyricia_08pattyricia_08 Registered Users Posts: 5 ■□□□□□□□□□
    thank you guys, I configured the username and password in the router..

    when I check the interfac of s0/0/1, i get this

    Serial0/0/1 is up, line protocol is down (disabled)
    Hardware is HD64570
    Internet address is 172.57.1.218/30
    MTU 1500 bytes, BW 1544 Kbit, DLY 20000 usec,
    reliability 255/255, txload 1/255, rxload 1/255
    Encapsulation PPP, loopback not set, keepalive set (10 sec)
    LCP Closed
    Closed: LEXCP, BRIDGECP, IPCP, CCP, CDPCP, LLC2, BACP
    Last input never, output never, output hang never
    Last clearing of "show interface" counters never
    Input queue: 0/75/0 (size/max/drops); Total output drops: 0
    Queueing strategy: weighted fair
    Output queue: 0/1000/64/0 (size/max total/threshold/drops)
    Conversations 0/0/256 (active/max active/max total)
    Reserved Conversations 0/0 (allocated/max allocated)
    Available Bandwidth 1158 kilobits/sec
    5 minute input rate 0 bits/sec, 0 packets/sec
    5 minute output rate 0 bits/sec, 0 packets/sec
    0 packets input, 0 bytes, 0 no buffer
    Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
    0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
    0 packets output, 0 bytes, 0 underruns
    0 output errors, 0 collisions, 0 interface resets
    0 output buffer failures, 0 output buffers swapped out
    0 carrier transitions
    DCD=up DSR=up DTR=up RTS=up CTS=up

    I wanna ask, what is the problem when LCP is closed
  • Options
    goldenlightgoldenlight Member Posts: 378 ■■□□□□□□□□
    hmm..... I think I found the problem.. interface Serial0/0/1
    bandwidth 64
    ip address 172.57.1.214 255.255.255.252
    encapsulation ppp
    ppp authentication chap
    ip nat inside
    clock rate 64000 <
    Could this be the problem

    I noticed you have the clock rate set to 2000000 on the other Serial ports

    looking over your config in more detail I see PPP Authentication is configured on only one router.

    Thanks for helping me prepare for my ICND2 Exam icon_smile.gif
    The Only way to do great work is to love what you do. If you haven't found it keep looking. Don't settle - Steve Jobs
  • Options
    FloOzFloOz Member Posts: 1,614 ■■■■□□□□□□
    config for other router?
  • Options
    prtechprtech Member Posts: 163
    Post your current config and config of other router.
    If at first you do succeed, try something harder.
  • Options
    xXErebuSxXErebuS Member Posts: 230
    Post your CHAP authentication configs from both routers.... remember you use the other side of the links' username with the same password.
Sign In or Register to comment.