Pre-Configurations For Nokia VPN Service Configuration

sevice-core-network-topology

Network Preparation Before L2 VPN and L3 VPN Service Configuration

In the first part of this article series, we will focus on Nokia Pre-Configurations For VPN Services Configuration. Here, in this article, we will talk about the practical configuration of the network before VPN Service Configuration. All these steps in this lesson are as a preparation for Nokia VPN Service Creation.

The below topology will be our reference during our Pre-Configurations For Nokia VPN Service Configuration.

Nokia  Service Router Service Configuration Preparation
 

Nokia Service Configuration Preparation

We will follow the below configuration steps:

  1. Routing Protocol Configuartion
  2. Network Convergence
  3. MPLS Configuration
  4. Enabling RSVP
  5. Enablling LDP for TLDP
  6. Creating MPLS Path
  7. Creating LSP and Binding to LSP
  8. Creating SDP
  9. Access Port Configuration

Here, we will do the configuration of R4 only. The other routers must be configured like R4.Let’s see the configuration step by step:

Routing Protocol Configuration

R4# configure router
R4>config>router# interface system
R4>config>router>if# address 4.4.4.4/32
R4>config>router>if# exit
R4>config>router# interface toR3
R4>config>router>if# address 10.10.34.4/24

R4>config>router# ospf
R4>config>router>ospf# traffic-engineering
R4>config>router>ospf# area 0.0.0.0
R4>config>router>ospf# interface system
R4>config>router>ospf>if# exit
R4>config>router>ospf# interface toR3

To check the ospf neighborship use the "show router ospf neighbor" command.

Network Convergence

Network must be converge. With "show router route-table" command, you can check the routes if all the ospf routes are existing.

MPLS Configuration

R4# configure router
R4>config>router# mpls
R4>config>router>mpls# interface system
R4>config>router>mpls>if# exit
R4>config>router>mpls# interface toR3
R4>config>router>mpls# exit

You can check MPLS configuration with "info" command as other configuration checks.

R4>config>router>mpls# info
            interface "system"
            exit
            interface "interface toR3"
            exit
            no shutdown

You can also check mpls interfaces with the "show router mpls interface" command.

Enabling RSVP

RSVP is automatically enabled when the MPLS is enabled. You can check this, with the "info" command.

R4>config>router>rsvp# info
            interface "system"
            exit
            interface "interface toR3"
            exit
            no shutdown

You can also use "show router rsvp interface" command to check RSVP enabled interfaces.

Enablling LDP for TLDP

R4# configure router
R4>config>router# ldp
R4>config>router>mpls# interface-parameters
R4>config>router>mpls>interface-parameters# interface toR3
R4>config>router>mpls>interface-parameters>if# exit

After this configuration, you check the LDP with the "show router ldp status", "show router ldp session" and "show router ldp discovery" commands.

Creating MPLS Path

If RSVP-TE is used as the label switching protocol, then MPLS path must be created.

R4# configure router mpls
R4>config>router>mpls# path to R1
R4>config>router>mpls>path# hop 10 3.3.3.3 strict
R4>config>router>mpls>path# hop 20 2.2.2.2 strict
R4>config>router>mpls>path# hop 30 1.1.1.1 strict
R4>config>router>mpls>path# no shutdown
R4>config>router>mpls>path# exit

 

While creating the path, you can use "loose" instead of "strict". Here, you can use strict when defining the node explicitly, meaning "go to the node,through this router". And you can use loose when you think that "go to the node, but you define how".

Creating LSP and Binding to LSP

R4>config>router>mpls# lsp R4-R1
R4>config>router>mpls>lsp# to 1.1.1.1
R4>config>router>mpls>lsp# primary  toR1
R4>config>router>mpls>lsp>primary# exit
R4>config>router>mpls>lsp# no shutdown
R4>config>router>mpls>lsp# exit

 

Creating SDP (Service Distribution Point)

SDP (Service Distribution Point) must be created before the service creation. More than one service can be associated to a SDP, after this creation.

R4# configure service
R4>config>service# sdp 50 mpls create
R4>config>service>sdp# far-end 1.1.1.1 
R4>config>service>sdp# lsp R4-R1
R4>config>service>sdp# no shutdown
R4>config>service>sdp# exit 

Above, you will use ldp instead of lsp, if you are using LDP instead of RSVP-TE.

Access Port Configuration

R4# configure port 1/1/2
R4>config>port# shut
R4>config>port# ethernet mode access
R4>config>port# no shutdown
R4>config>port# exit
R4# configure port 1/1/3
R4>config>port# shut
R4>config>port# ethernet mode access
R4>config>port# no shutdown
R4>config>port# exit

You can also change the encapsulation type with the command "ethernet dot1q|null|qinq" .

After this last step, our network is ready to define services.

We will talk about configuring different Nokia VPN Services in the following articles. But as a summary, Nokia VPN Service Configuration steps are below:

  1. Create a Customer with a Customer ID.
  2. Create a service with Service ID that is associated with this Customer ID.
  3. Define SAP
  4. Associate SDP to the service.
  5. Enable service.
  6. Optionaly, you can define the below additional steps:

  7. Accounting
  8. Filtering
  9. Qos

With this two article, I tried to explain the configuration of the core before the service creation and configuration. I hope this articles will be helpful for you. In the following articles there will be more on Nokia VPN Services. Keep on IPcisco.com ;)

Lesson tags: vpn services, vpls, vpws, vprn, ies
Back to: Nokia Service Architecture > Nokia VPN Services Overview

Leave a Reply

Your email address will not be published. Required fields are marked *

Latest Blog Posts