Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Interface link speed 3

Status
Not open for further replies.

DomenicoC

Technical User
Mar 1, 2004
40
0
0
US
HI,

I am running IOS 12.2 on a 831 router, what are the commmands to set the link and duplex speed?

Cheers,

Dom
 
Do you have a good reason for not leaving the speed and duplex at the default setting of AUTO?
 
Yes, I have setup a vpn tunnel using encryption and it seems to be dropping packets. What happens is 4 or 5 consecutive requests respond but then 15-20 fail. Any ideas on how to troubleshoot this?

Cheers,

Dom
 
I wouldn't hard-set the speed and duplex settings unless you're actually seeing interface-level errors. I don't have a lot of experience with troubleshooting packet drops on VPN tunnels. My first thought is that perhaps you are having MTU issues.

 
Any suggestions on where to begin troubleshoot? I am new to this! I don't know if debugging the interface will help at all.

Someone HELP!
 
Do a "show int" on your router and you'll see if there are interface-level errors. If there aren't any then don't mess around with your speed and duplex settings. Leave it at AUTO.

I would recommend beginning a new thread titled "Packet Drops on VPN Tunnel" and you'll probably get more help from people more qualified than me. I've had some experience with VPNs but probably not enough to help you out.
 
There's a problem with packets exceeding the MTU due to VPN overhead and having the DF bit set.

Try, on the interfaces, "ip policy route-map clear-df" and a route policy:
route-map clear-df permit 10
match ip address 101
set ip df 0

and an ACL:
access-list 102 permit ip 192.168.0.0 0.0.0.255 any
.. etc.

This will force the router to clear the DF bit and fragment regardless of what the sender specified. This may not be your issue, but is something that we found affecting VPN traffic.

 
Thank you everyone for your advice. I have to throw a curve ball into the equation. The connections worked perfect for about 10-20 minutes. I disconnected it and connected it again and it started dropping packets once again. Any ideas on what might be going on?

Cheers,

Dom
 
Try to nail down exactly where the packets are being dropped. Are they being dropped in VPN tunnel? Are they being dropped at the interface due to errors?

How are you determining that packet loss is actually occurring?
 
I determine the packet loss with a ping -t from a workstation on one end of the tunnel to a workstation on the other end.

How can I nail down exacly where they are being dropped on the router?
 
When you do a ping from that workstation and the pings start failing, do they all start failing or is the packet loss intermittent?


When the packet loss begins to occur, can you try pinging with different packet sizes to see if smaller packets don't fail?

Is you interface seeing any errors at all?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top