cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
454
Views
0
Helpful
1
Replies

Segfault during creation GRE tunnel on IOS XE

IBMeR
Level 1
Level 1

Hello,

I trying to create tunnel on IOS XE, but if I try set tunnel source or destination - script interrupted with segmentation fault.

crud = CRUDService()

native = xe_native.Native()

interface = native.Interface()

tunnel = interface.Tunnel()

tunnel.name = 521

tunnel.description = "test tunnel"

tunnel.vrf.forwarding="PostNscrub"

#tunnel.ip.address.primary.address= "192.168.201.202"

#tunnel.ip.address.primary.mask="255.255.255.254"

tunnel.ip.tcp.adjust_mss=1436

tunnel.tunnel.source="Lo103"

#tunnel.tunnel.destination="8.8.8.8"

interface.tunnel.append(tunnel)

crud.create(provider, interface)

1 Accepted Solution
1 Reply 1