Cisco VRF aware NAT

http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/ipaddr_nat/configuration/xe-3s/asr1000/nat-xe-3s-asr1k-book/iadnat-addr-consv.html


 

 

http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/ipaddr_nat/configuration/xe-3s/asr1000/nat-xe-3s-asr1k-book/iadnat-mpls-vpn.html#GUID-FBFD3D36-C8AC-4F86-A0B3-D5026D1AB646

http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/ipaddr_nat/configuration/xe-3s/asr1000/nat-xe-3s-asr1k-book/iadnat-mpls-vpn.html#GUID-15FFAA73-EA24-4D0E-A9BA-108D9C10261A

https://sites.google.com/site/amitsciscozone/home/mpls/vrf-aware-nat

http://www.cisco.com/c/en/us/support/docs/ip/network-address-translation-nat/112084-ios-nat-mpls-vpn-00.html#egresspenat2

 

 

http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_data_zbf/configuration/xe-3s/asr1000/sec-data-zbf-xe-asr1k-book/vrf-aware-fw.html#GUID-0457B1D0-6162-49F7-9431-1BC7B2F4E3F2

 

Nat Virtual Interfaces

VRFing 103, Using NAT Virtual Interfaces for Global Reachability

VRFing 102, Providing Internet Access With Dynamic PAT

NVI between VRF’s
http://serverfault.com/questions/516979/cisco-1921-using-nat-nvi-method-between-vrfs-slow-
performance

Old VRF aware NAT config
https://sites.google.com/site/amitsciscozone/home/mpls/vrf-aware-nat

VPDN (PPtP) config guide

! Noodzakelijk commando, anders een optie voor PPtP client protocol!
!
service internal

!
vpdn enable
!
vpdn-group PPTP-client
request-dialin
protocol pptp
pool-member 99
initiate-to ip < VPDN IP address >
!
interface Dialer99
ip address negotiated
encapsulation ppp
dialer pool 99
dialer idle-timeout 0
dialer string 1
dialer persistent
dialer vpdn
 ppp authentication chap callin
ppp chap hostname < USERNAME >
ppp chap password < PASSWORD >
!
ip route 0.0.0.0 0.0.0.0 Dialer99
ip route < VPDN IP address > 255.255.255.255 < UITGAANDE INTERFACE >

 


Achtergrond

http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/vpdn/configuration/xe-3s/asr1000/vpd-xe-3s-asr1000-book/mp-mngd-ipv6-lns-xe.html#GUID-C52024B2-2F98-46FC-8C5F-29BBD002280E

Cisco 819-LTE (KPN 4G/LTE)

Werkende config voor een Cisco 819-4G (LTE) en KPN mobiel.

Begin met het instellen van het Celluar modem, dit moet direct in de enable modus nog niet in de configure modus (dus niet conf t).

Stel regio in op Europe:

cellular 0 lte prl-region 1

Optioneel, stel in op alleen LTE modus:

cellular 0 lte technology lte

Activeer de SIM (waarbij de XYZ de SIM pincode is):

 

cellular 0 lte sim unlock XYZ

Controle:

Locked

Router#sh cellular 0 security 
Active SIM = 0
SIM switchover attempts = 0
Card Holder Verification (CHV1) = Enabled
SIM Status = Locked
SIM User Operation Required = Enter CHV1
Number of CHV1 Retries remaining = 3

Unlocked:

Router#sh cellular 0 security 
Active SIM = 0
SIM switchover attempts = 0
Card Holder Verification (CHV1) = Disabled
SIM Status = OK
SIM User Operation Required = None
Number of CHV1 Retries remaining = 3

 

Controle of de sim verbonden is met het mobiele netwerk, stuur een SMS;

cellular 0 lte sms send 061234567 hallo

Maak een profile voor de data APN:

cellular 0 lte profile create 1 create KPN4G.nl none

Profile 1 is standaard gekoppeld aan Celluar 0 en word aangesproken als de radio up is.

Om te controleren of de radio en de SIM is aangemeld:

sh celluar 0 radio

4G#sh cellular 0 radio
Radio power mode = ON
Channel Number = 6400
Current Band = LTE
Current RSSI = -80 dBm
Current RSRP = -100 dBm
Current RSRQ = -4 dB
Current SNR = 14.6 dB
Radio Access Technology(RAT) Preference = LTE
Radio Access Technology(RAT) Selected = LTE

En om te controleren of de radio het netwerk correct ziet:

sh cellular 0 network

4G#sh cellular 0 network
Current System Time = Sun Jan 6 0:13:57 1980
Current Service Status = Normal
Current Service = Packet switched
Current Roaming Status = Home
Network Selection Mode = Automatic
Network = KPN
Mobile Country Code (MCC) = 204
Mobile Network Code (MNC) = 8
Packet switch domain(PS) state = Attached
Registration state(EMM) = Registered
Tracking Area Code (TAC) = 60501
Cell ID = 9574667

 

Onderstaand de IOS configuratie waarbij de interface vlan 1 als interne interface gebruikt word met NAT en ip reeks 192.0.200.0/24.

!
controller Cellular 0
lte sim authenticate 0 0000
lte sim data-profile 1 attach-profile 1 slot 0
lte modem link-recovery rssi onset-threshold -110

lte modem link-recovery monitor-timer 60
lte modem link-recovery wait-timer 10
lte modem link-recovery debounce-count 6
!
interface Cellular0
ip address negotiated
no ip unreachables
ip nat outside
ip virtual-reassembly in
encapsulation slip
dialer in-band
dialer idle-timeout 0
dialer enable-timeout 60
dialer string lte
async mode interactive
routing dynamic
!
interface Vlan1
ip address 192.0.200.254 255.255.255.0
ip nat inside
ip virtual-reassembly in
!
ip nat inside source list NAT interface Cellular 0 overload
ip route 0.0.0.0 0.0.0.0 Cellular0
!
ip access-list extended NAT
permit ip 192.0.200.0 0.0.0.255 any
!
line 3
script dialer lte
modem InOut
no exec
transport input telnet
transport output all
rxspeed 100000000
txspeed 50000000

 


Achtergrond info

http://www.cisco.com/c/en/us/td/docs/routers/access/interfaces/software/feature/guide/EHWIC-4G-LTESW.html#pgfId-1309655

http://blog.martinshouse.com/2014/09/in-hope-that-it-helps-others-here-is.html

IOS XR primer

http://tinyurl.com/n9sd77f

And of course, the Master Command Listing for IOS XR was
very helpful too.

Once you have all this down, you can then dig into specific
topics such as RPL, e.t.c.

Here is a good one on RPL.

https://supportforums.cisco.com/document/88676/asr9000xr-understanding-and-using-rpl-route-policy-language

 

http://www.cisco.com/c/en/us/td/docs/ios_xr_sw/iosxr_r3-5/xr12000_conversion/reference/guide/cnv_r35/cn35main.pdf

gives a baseline with some good info as to differences

and then move on to
http://www.cisco.com/c/en/us/support/ios-nx-os-software/ios-xr-software/products-installation-and-configuration-guides-list.html

which gives the in depth topic by topic.

https://supportforums.cisco.com/community/5996/xr-os-and-platforms
Document tab as well as Blog tab will get you expert at IOS-XR in no time.

ciscolive.com  pop “IOS-XR” into the search

Synchronization & Timing Self-Paced Online Bootcamp (Available Now)

Synchronization has three aspects Frequency, Phase & Time. The need for synchronization is becoming critical for the following industries and deployments,
– Service Providers:  Mobile Networks, Performance Management in Carrier Ethernet Networks
– Industrial Solutions: More efficient Manufacturing
– Smart Grid: Replacing legacy Time Distribution with Ethernet
– High Frequency Trading: Regulatory and Market Differentiation

However this topic is being perceived as complex especially if your core expertise is IP networking. Dennis Hagarty from Cisco Systems who is also an industry expert in this area, decided to solve this problem by developing “Synchronization & Timing Self-Paced Bootcamp” which covers technology fundamentals as well as configuration and verification. Complete bootcamp is available on Youtube and has three modules. Below are the Youtube links,

Synchronization & Timing Self-Paced Bootcamp
Playlist: http://youtu.be/N7nTCHxBitU?list=PLEKSxcWxROxL2RdSJ5oNOshqgVc4sZ9bI

Clocking & Sync Part 1/3: TDM and Packet-based Frequency Sync
http://youtu.be/N7nTCHxBitU?list=PLEKSxcWxROxL2RdSJ5oNOshqgVc4sZ9bI

Clocking & Sync Part 2/3: IEEE 1588 and PTPv2
http://youtu.be/250reOmrN70?list=PLEKSxcWxROxL2RdSJ5oNOshqgVc4sZ9bI

Clocking & Sync Part 3/3: Configuration of Clocking and Timing
http://youtu.be/eitxR-_lMxs?list=PLEKSxcWxROxL2RdSJ5oNOshqgVc4sZ9bI

 

Cisco IOS XR EEM

Hi , I have the below EEM script and am trying to do it using IOS XR

event
manager applet SLA_OUT

event snmp oid 1.3.6.1.4.1.9.9.42.1.2.9.1.6.2 get-type exact entry-op eq entry-val 1 exit-op eq exit-val 2 poll-interval 5

action 1.0 syslog msg “Test”

action 1.1 cli command “enable”

action 1.2 cli command “configure
terminal”

action 1.3 cli command “ip route 0.0.0.0
0.0.0.0 192.168.13.3”

action 1.4 syslog msg “There is a problem on our Primary connection , move all the traffic to the Secondary Line”

event
manager applet SLA_OK

event snmp oid 1.3.6.1.4.1.9.9.42.1.2.9.1.6.2 get-type exact entry-op eq entry-val 2 exit-op eq exit-val 1 poll-interval 5

action 1.0 syslog msg “OK”

action 1.1 cli command “enable”

action 1.2 cli command “configure
terminal”

action 1.3 cli command “no ip route
0.0.0.0 0.0.0.0 192.168.13.3”

action 1.4 syslog msg “Our Primary
connection is functionin again , stop using the Secondary Line”

Carrier Ethernet and Mobile Backhaul Video Tutorials

Carrier Ethernet and Mobile Backhaul Video Tutorials

Cisco has posted Ten New video tutorials on “Carrier Ethernet and Mobile Backhaul” on Cisco SPAG youtube channel.

Link:
http://youtu.be/uKwuge9DQl8?list=PLEKSxcWxROxKDIG6U4XA0Ieq5AC8LmYoL

Topics:
Introduction to ELINE Services
Configuring ELINE Services
Configuring CFNM on ELINE Service
Configuring Two Way Delay Measurement using Y1731PM Introduction to ELAN Services Configuring G8032 in an Access Ring Network Introduction to MPLS in Access Configuring ELAN Service using H-VPLS BGP Auto Discovery Configuring CE2.0 Layer 2 Protocol Forwarding Configuring Unified MPLS Transport

Cisco SPAG Youtube Channel
https://www.youtube.com/channel/UCeMbOxOeoRawOmhe1iuSSyw

1 15 16 17 18 19 22