5
4b
Setting the Enable Command Security Level Password (Optional)
1. Enter
enable
to enter the Enable command security level.
2. At the password prompt, type
password
(all lowercase).
3. Enter
config terminal
to enter the Global configuration mode.
4. Enter
enable password ADTRAN
to set an Enable level password of your choosing.
4c
Configuring the Ethernet Port Parameters
1. Enter
enable
to enter the Enable command
security level.
2. Enter the password.
3. Enter
config terminal
to enter the Global
configuration mode.
4. Enter
interface eth 0/1
to access the
configuration parameters for the 10/100
BaseT port located on the faceplate of the
module.
5. Enter
ip address 10.10.20.7 255.255.255.0
to assign an IP address to the Ethernet port
using a 24-bit subnet mask.
6. Enter
no shutdown
to activate the interface
to pass data.
7. Enter
exit
to exit the Ethernet
interface commands and return to the Global
configuration mode.
The configuration parameters used in the following examples are for instructional purposes only.
Please replace all bold and underlined entries (
example
) with your specific parameters to
configure your application.
For this example, replace the underlined word with a password of your choosing. Our example in
Step 4c uses ADTRAN as the password.
The Enable command security level passwords are case sensitive.
The TSU NetVanta Router Module use a Slot/Port notation for interface identification.
ethernet.txt - Notepad
! This is a sample script to configure the ethernet port.
! A text file version of this script (ethernet.txt) is available
! on the TSU NetVanta Router Module Documentation CD.
!
! First enter the Enable command security level.
enable
!
! We have defined an enable password of ADTRAN.
ADTRAN
!
! Next enter the global configuration mode.
config terminal
!
! Now, enter the ethernet interface configuration mode.
interface eth 0/1
!
! Assign the ethernet port an IP address.
ip address
10.10.20.7
255.255.255.0
!
! Activate the interface to pass data.
no shutdown
!
! Exit back to the global configuration mode.
exit
!
! End Script