Link to home
Start Free TrialLog in
Avatar of jterrero
jterrero

asked on

Bridged Network, Getting a IP PAKHEADER Error, please help

Hello Everyone, I have created a Bridged network. the 2 locations I am bridging are connected via a Leased T1 Line from Verizon, location distance is about 300 yards, i need these to be on the same subnet because of management reasons. After i configured this everything seems to be working fine, with the exception that I keep getting the following error
 
%IPFAST-2-PAKSTICK: Corrupted pak header for BVI1, flags 0x80
-traceback= 80033C18 80144308 80144554 80241804 8023E864  (a bunch of other number sequences, did not feel like typing them)

----------------------------
Router A

!* BLDG41721.CiscoConfig
!* IP Address : 172.16.40.253
!* Community  : cisco
!* Downloaded 8/2/2004 2:40:35 PM by SolarWinds Config Transfer Engine Version 5.5.0

!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname BLDG41721
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$MFtQ$nll.R7q8O91X08R4jbF5j/
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
aaa new-model
!
!
aaa session-id common
ip subnet-zero
ip cef
!
!
!
ip domain list gloriawisedc
no ftp-server write-enable
!
!
bridge irb
!
!
interface Ethernet0
 no ip address
 half-duplex
 bridge-group 1
!
interface FastEthernet0
 no ip address
 shutdown
 speed auto
!
interface Serial0
 no ip address
 ip access-group 102 in
 ip access-group 102 out
 encapsulation ppp
 no fair-queue
 bridge-group 1
!
interface BVI1
 ip address 172.16.40.253 255.255.255.0
 ip access-group 101 in
 ip access-group 101 out
!
ip classless
no ip http server
!
access-list 101 permit ip any any
access-list 102 permit icmp any any
access-list 103 permit tcp any any eq telnet
snmp-server community cisco RW
snmp-server community view RO
snmp-server community public RO
bridge 1 protocol ieee
bridge 1 route ip

!
line con 0
line aux 0
line vty 0 4
 password q1w2e3r4$$
!
!
end


----------
Router B
!* YSH1721.CiscoConfig
!* IP Address : 172.16.40.254
!* Community  : cisco
!* Downloaded 8/2/2004 2:44:10 PM by SolarWinds Config Transfer Engine Version 5.5.0

!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname YSH1721
!
boot-start-marker
boot-end-marker
!
logging monitor alerts
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
no aaa new-model
ip subnet-zero
ip cef
!
!
!
no ftp-server write-enable
!
!
bridge irb
!
!
interface Loopback0
 ip address 172.29.1.1 255.255.255.255
!
interface Ethernet0
 no ip address
 ip access-group 101 in
 ip access-group 101 out
 full-duplex
 bridge-group 1
!
interface FastEthernet0
 no ip address
 shutdown
 speed auto
!
interface Serial0
 no ip address
 ip access-group 101 in
 ip access-group 101 out
 encapsulation ppp
 no fair-queue
 bridge-group 1
!
interface BVI1
 ip address 172.16.40.254 255.255.255.0
!
ip classless
no ip http server
!
access-list 101 permit icmp any any echo
access-list 101 permit icmp any any echo-reply
access-list 101 permit ip any any
access-list 103 permit tcp any any eq telnet
snmp-server community public RO
snmp-server community cisco RW
snmp-server enable traps tty
bridge 1 protocol ieee
bridge 1 route ip
!
line con 0
 password q1w2e3r4$$
 login
line aux 0
line vty 0 4
 password q1w2e3r4$$
 login
!
!
end


Avatar of JFrederick29
JFrederick29
Flag of United States of America image

According to Cisco's website:

-------------------------
%IPFAST-2-PAKSTICK : Corrupted pak header for [chars], flags [hex]
Explanation   A programming error has occurred.

Recommended Action   Copy the error message exactly as it appears on the console or in the system log. Issue the show tech-support command to gather data that may provide information to determine the nature of the error. If you cannot determine the nature of the error from the error message text or from the show tech-support command output, call your Cisco technical support representative, and provide the representative with the gathered information.
-------------------------

It has to do with fast switching.  You could enable CEF on your interfaces to see if it clears up the messages using the "ip route-cache cef" interface configuration command.  You already have "ip cef" globally enabled.  You could also try upgrading your IOS to the latest version or like the recommended action states, call Cisco TAC.
Avatar of Don Johnston
If all you're doing is bridging, why the BVI and IRB?

You might try just doing straight bridging.

Don
Avatar of jterrero
jterrero

ASKER

how would i go about straight bridging ?
Your access lists on router A make no sense.  You're allowing only ICMP over the serial interface, and only Telnet to be routed....

yes, i have fixed the access-list. thanks though
ASKER CERTIFIED SOLUTION
Avatar of Don Johnston
Don Johnston
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial