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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

WAN traffic problem

Status
Not open for further replies.

sikek

MIS
Joined
Sep 15, 2003
Messages
170
Location
US
We have an 3640 cisco with three T-1 links. But all traffic comes in on one interface. And all traffic goes out on one interface. How can i config the traffic to use both circuits?If you need to see the config let me know thanks for any help.

A#
30 second input rate 0 bits/sec, 0 packets/sec
30 second output rate 620000 bits/sec, 156 packets/sec


B#Available Bandwidth 1536 kilobits/sec
5 minute input rate 1508000 bits/sec, 293 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec


C#Available Bandwidth 1158 kilobits/sec
30 second input rate 0 bits/sec, 0 packets/sec
30 second output rate 625000 bits/sec, 156 packets/sec
 
Are all T-1's from the same ISP? Do you have a specific block of IP's that is being routed to and from all 3 T-1's. Something as simple as equal weight routes on the ISP and on your router would work.
 
No one T-1 is for Verio the other two are for Epoch. Here's the config on the router.thanks for the quick reply rudeboy.



!
ip subnet-zero
ip cef
!
!
!
!
!
!
interface Ethernet0/0
ip address 209.x.x.x 255.255.255.0
no ip unreachables
half-duplex
!
interface Serial0/0
description connected to second Epoch line
ip address 206.x.x.x 255.255.255.252
ip access-group 103 in
ip access-group 103 out
no ip unreachables
ip load-sharing per-packet
encapsulation ppp
load-interval 30
!
interface Ethernet0/1
no ip address
shutdown
half-duplex
!
interface FastEthernet1/0
description connect to HP_Procurve_Internal
ip address 216.x.x.x 255.255.255.0
ip access-group 103 in
ip access-group 103 out
no ip unreachables
keepalive 30
duplex auto
speed auto
!
interface Serial1/0
description connected to Verio
ip address 209.x.x.x 255.255.255.252
ip access-group 103 in
ip access-group 103 out
no ip unreachables
encapsulation ppp
!
interface Serial1/1
description connected to Epoch
ip address 206.x.x.x 255.255.255.252
no ip unreachables
ip load-sharing per-packet
encapsulation ppp
load-interval 30
!
router bgp 26135
no synchronization
bgp log-neighbor-changes
network 209.x.x.0
network 216.x.x.0
neighbor 155.x.x.x remote-as 4565
neighbor 155.x.x.x ebgp-multihop 5
neighbor 209.x.x.x remote-as 2914
maximum-paths 3
no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0
ip route 0.0.0.0 0.0.0.0 Serial1/1
ip route 155.x.x.x 255.255.255.255 Serial0/0
ip route 155.x.x.x 255.255.255.255 Serial1/1
ip route 209.x.x.x 255.255.255.0 216.x.x.x
ip route 216.x.x.x 255.255.255.0 216.x.x.x
no ip http server
ip pim bidir-enable
!
!
access-list 101 deny icmp any any echo
access-list 101 deny icmp any any echo-reply
access-list 101 deny tcp any any eq 135
access-list 101 deny udp any any eq 135
access-list 101 deny udp any any eq tftp
access-list 101 deny tcp any any eq 4444
access-list 101 deny tcp any any eq 707
access-list 101 deny udp any any eq netbios-ns
access-list 101 deny tcp any any eq 137
access-list 101 deny udp any any eq netbios-dgm
access-list 101 deny tcp any any eq 138
access-list 101 deny udp any any eq netbios-ss
access-list 101 deny tcp any any eq 139
access-list 101 deny tcp any any eq 445
access-list 101 deny tcp any any eq 593
access-list 101 permit ip any any
access-list 102 deny tcp any any eq 135
access-list 102 deny udp any any eq 135
access-list 102 deny udp any any eq tftp
access-list 102 deny tcp any any eq 4444
access-list 102 deny tcp any any eq 707
access-list 102 permit ip any any
access-list 103 deny udp any any eq tftp
access-list 103 deny tcp any any eq 4444
access-list 103 deny tcp any any eq 707
access-list 103 deny icmp any any echo
access-list 103 deny icmp any any echo-reply
access-list 103 permit ip any any
access-list 110 deny icmp any any echo
access-list 110 deny icmp any any echo-reply
access-list 110 permit ip any any
route-map prepend permit 10
set as-path prepend 26135 26135
 
How can i change this config to make use of all circuits to there max?
 
ip load-sharing per-packet on the serial interfaces
this is the key statement. setup your routes

“Reserve your right to think, for even to think wrongly is better than not to think at all”

Fisher CCNP,CCNA Network+
[americanflag]
 
Just to make sure i got you correctly i should enable ip load-sharing per-packet on all interfaces. Two of them already has it enable. So all i need to do is enable it on the serial 1/0 right?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top