6
4d
Configuring the Default Gateway
1. Enter
ip route 0.0.0.0 0.0.0.0
192.22.72.101
to add 192.22.72.101 to the
route table as the default gateway.
2. If configuring the TSU NetVanta Router
Module for Frame Relay applications,
proceed to Step 5. If using the module in a
PPP configuration, please skip to Step 6.
5
Configuring the Frame Relay Virtual Interface
The following steps outline configuring a frame relay virtual interface (labeled 1) using a single DLCI back to the
corporate router (defined as DLCI 16).
5a
Creating the Interface and Defining the Encapsulation
1. Enter
interface fr 1
to create a frame relay
virtual interface labeled 1.
2. Enter
frame-relay lmi-type ansi
to
configure frame relay virtual interface 1 to
use ANSI (Annex D) signaling. The default
LMI type is ANSI.
3. Enter
no shutdown
to activate the interface
to pass data.
4. Enter
exit
to return to the Global
configuration mode.
The following steps assume the Global configuration mode is currently active. Verify that the
prompt of your module displays
(config)#
.
The following steps assume the Global configuration mode is currently active. Verify that the
prompt of your module displays
(config)#
.
fr1.txt - Notepad
! This script creates a virtual frame relay interface labeled 1
! and defines ANSI (Annex D) as the signaling method. A
! text version of this script (fr1.txt) is available on the
! TSU NetVanta Router Module Documentation CD.
!
! First create the virtual frame relay interface and enter the
! configuration mode for the interface.
interface fr
1
!
! The prompt should now display Router(config-f1)#.
!
! Next assign the lmi type for the interface.
frame-relay lmi-type
ansi
!
! Activate the interface to pass data.
no shutdown
!
! Exit back to the global configuration mode.
exit
!
! End script
defgate.txt - Notepad
! This script configures the default gateway back to the host
! site router. A text version of this script (defgate.txt) is
! available on the TSU NetVanta Router Module
! Documentation CD.
!
! Enter the default gateway ip address to the route table.
ip route 0.0.0.0 0.0.0.0
192.22.72.101
!
! End script