NetVanta 3205 - FAQ


Home Support Contact Us

 NetVanta 3205 Chassis - Resources

Type Name ID  
FAQ How many PVCs can I terminate with the NetVanta 3200?    
FAQ My router isn't working?    
FAQ How do I hide my passwords?    
FAQ I forgot my password?    
FAQ How do I troubleshoot my router?    
FAQ What tools are available to help me find PPP issues?    
FAQ What command is used to prevent an interface from sending RIP broadcasts?    
FAQ How do I upgrade my AOS software?    
FAQ How do I stop listening for RIP V1 updates on an interface?    
FAQ What is the difference between a default route and a default gateway?    
FAQ How do I determine when I should use RIP V2?    
FAQ How do I verify the frame relay is working?    
FAQ I try to Telnet to my unit but get disconnected?    
FAQ What kind of circuit should I order for my NetVanta 3200?    
FAQ How do I set the router up for host mode operation?    
FAQ When should I use a router?    
FAQ My T1 is not up?    
FAQ What does a router do?    
FAQ How do I assign IP addresses to my network?    
FAQ What is a VT 100 terminal emulator?    

How many PVCs can I terminate with the NetVanta 3200?

There is no set limit on the number of PVCs (subinterfaces) the NetVanta 3200 can terminate, but the best performance will be obtained on units where the total does not exceed one hundred thirty (130).

[Back to Top]


My router isn't working, I can't access my server!

Routing is a straightforward process. Either the router has a route to a remote network or it sends the packet to its default route. Try to determine where the routing fails. You can use the traceroute command from the privileged prompt to see what is the last gateway a packet gets to. Also the ping command will help. Ping along the route until a response is not received. Next, ensure the router where pings fail is configured properly. That is:

Now check the routing table:

Router# show ip route

DESTINATIONMASKGATEWAYINTERFACE SOURCE
0.0.0.00.0.0.0192.168.1.2ppp 1 Static
192.168.10.0255.255.255.0192.168.1.1ppp 1 RIP V2
192.168.1.0255.255.255.00.0.0.0ppp 1 Connected
192.168.20.0255.255.255.00.0.0.0eth 0/1 Connected

Here the router lists all the places it knows how to get to. It does not however know if those remote gateways know how to get back to the network where the ping is originating. Imagine that the workstation on 192.168.20.3 tries to ping a workstation on 192.168.30.5. Assuming that the pings are successful from 20.3 to 192.168.1.2, we should check the far-end router. If it shows a route to 20.0 and to 30.0, we need to find out if the 30.0 router has a default route to 10.0 or has a route to 20.0. If it does then the configuration of the far-end workstation should be checked for a valid default gateway.

[Back to Top]


How do I hide my passwords?

Passwords cannot be hidden in the configuration file. They can be encrypted so they are not readily obtained from the configuration file. To encrypt your passwords use the following command:

Router (config)# enable password md5 <word>

The password is encrypted with the md5-hashing scheme and does not appear in clear text in the configuration file. Remember to save with the "copy run start" command.

[Back to Top]


I forgot my password, how do I get into the NetVanta 3200?

The NetVanta 3200 will require direct physical access to bypass the configured password for privileged mode. This procedure cannot be used remotely over Telnet. First, connect a terminal session cable to the console port on the NetVanta 3200. Establish a connection by using settings: 9600 bps, 8 bits, no parity, and 1 stop bit. Reboot the NetVanta 3200 by using the reload command in privileged mode or by simply repowering the unit. As the unit boots, you will be given the opportunity to break out into monitor mode by pressing the ESC key within 5 seconds. While in the monitor mode issue the following command:

Bootstrap # bypass passwords

Bootstrap # boot

Notice that you are not issuing the reboot command following the bypass command. Once bypassed, the enable or privileged mode is accessible by entering enable <cr>. You will not be challenged for the password. Once in the privileged mode, you can enter a new password with the "enable password <word>" command where <word> is the new password. Also remember to change telnet passwords if they are also affected.

[Back to Top]


How do I troubleshoot my router? So many things could be wrong!

Router troubleshooting need not be difficult if a systematic approach is used. First try to generalize the issue to discern if the problem can be localized. For instance, if data is flowing slowly is it also slow between devices on the LAN? Dividing the problem simplifies troubleshooting. If a remote workstation cannot be pinged, can the remote router be pinged? How about the local router?

Once the problem is isolated, try to identify which of the three networking layers appears to be affected. If there is a physical layer issue, it does not make sense to solve a network layer routing symptom first. When in doubt, start at the physical layer. Next troubleshoot the link layer, then finally the network layer.

[Back to Top]


What tools are available to help me find PPP issues?

The first command to use is "show interface ppp 1." This command lists the current state of the ppp link as shown below:

Router# sho int ppp 1

ppp 1
 

Link state is OPENED
Internet address is 192.168.1.1, Mask is 255.255.255.0
Far end internet address is 192.168.1.2
MTU is unknown
BW 1544 Kbit
Keepalive set (10 sec)
Authentication protocol is NONE
OPEN: LCP, IPCP
CLOSED:BRIDGE
8 packets input, 134 bytes
Received 8 broadcasts
0 input errors, 0 discards
9 packets output, 162 bytes
0 output errors, 0 discards
 

The link state or LCP here shows that at least the link is functional. If bridging or IP had been configured the NCP (Bridge or IPCP) layer would have gone active. If the LCP was inactive, the configuration should be checked to ensure it is correct for this physical link. Sometimes it is helpful to debug the ppp function to determine what is going wrong. Also, the security settings (CHAP, PAP, or NONE) should be correct at both ends. Try disabling security at both ends to see if configuration could be the issue.

Router# debug ppp verbose


2002.03.16 18:41:45 PPP:NEGOTIATION PPPtx[ppp 1] LCP: Identification MAGIC(6bf39d38) Msg(Router)
2002.03.16 18:41:45 PPP:NEGOTIATION PPPFSM: layer up, Protocol=c021
2002.03.16 18:41:45 PPP:NEGOTIATION LCP up
2002.03.16 18:41:45 PPP:NEGOTIATION PPPrx[ppp 1] LCP: Identification MAGIC(fed665bf) Msg(Router)

[Back to Top]


What command is used to prevent an interface from sending RIP broadcasts?

To setup the router for listening, but no RIP transmitting on an interface enter the following command in router rip configuration mode:Router(config rip)# passive-interface ethernet 0/1

If you want to stop transmitting on another interface simply replace ethernet 0/1 in the above command with the appropriate frame relay or PPP virtual interface name (e.g. fr 1.16, ppp 1, etc)

[Back to Top]


How do I upgrade my AOS software?

Should you ever need to upgrade your unit, several steps need to be taken to assure a valid upgrade. First, save your existing configuration to a tftp server. The command to execute this step is "copy start tftp." You will be prompted for file names and the server address in the process. Next, download the latest AOS software from the ADTRAN support website. When properly installed on your tftp server, the file will have the form "01010X.biz" where X is the latest version number. The release file is 010100.biz. From your privileged prompt:

Router# copy tftp flash

During the tftp download you will be prompted for the tftp server name, the tftp server file name, and finally the name of the file once it is transferred to the on-board flash. The flash can hold up to eight megabytes of files, whether AOS or configuration files. Now from the Configuration prompt:

Router (config) # boot system flash 01010X.biz

The boot command tells the router which software on the flash to use as the boot up AOS. The router should now be rebooted with the privileged command "reload." When the unit reboots, it will be running the latest software.

[Back to Top]


How do I stop listening for V1 updates on an interface?

To setup an interface for V2 listening only, first go to the interface configuration mode:Router(config-eth 0/1)# ip rip receive version 2

The command shown instructs the interface to only listen for V2 advertisements.

[Back to Top]


What is the difference between a default route, a default gateway, and a gateway of last resort?

A router can be used in one of two modes: it can be setup in a host mode, or it can be used as a router. First, let's consider host mode operation. Host mode is useful when first sending the router to a remote site for installation and configuration, providing Telnet access to the device. The host mode resembles a plain workstation and requires an IP host address as well as a default gateway. The default gateway is where the device will send packets not on the subnet defined by the host address and mask. Now consider the operation in router mode. The router has a similar set of decisions but over a wider number of interfaces. First, the router must determine if the incoming packet is destined for that router, one of the attached interfaces, or some other network. So the default route (defined by the static route command " ip route 0.0.0.0 0.0.0.0 A.B.C.D" where A.B.C.D. is the address of the far end router serving as the gateway for all unknown route packets) if configured, serves as the destination for packets that a route is not known for. If the default route is learned through a routing protocol, it is also known as the gateway of last resort.

[Back to Top]


How do I determine when I should use RIP V2, RIP V1, or Static Routes on the NetVanta 3200 router Products?
 

How you chose to route with the NetVanta 3200 is a result of several input factors. First, decide if the bandwidth to the NetVanta 3200 is large enough to support a routing protocol. Usually, at least 128Kbps is sufficient to support V1 or V2. Next decide whether RIP V1 is already supported in your network. If no other V1 is in use, simply use V2 since bandwidth requirements are similar, and V2 offers greater flexibility with respect to subnets. On low bandwidth circuits or in situations where static routes are already being redistributed, use Static Routes to forward traffic to remote networks.

[Back to Top]


How do I verify the frame relay is working?

Frame relay is a polled-response protocol. If the physical layer like the T1 is up, the NetVanta 3200 should poll the frame relay switch, and get a response back every ten seconds.

The following is the output of a show frame-relay lmi command:

Router#sh fr lmiLMI statistics for interface FR 1 LMI TYPE = ANSINum Status Enq. Sent 495 Num Status Msgs Rcvd 495

Num Update Status Rcvd 82 Num Status Timeouts 0

This command tells us we are polling the switch and that it is responding. The "clear counters" command will let you clear these statistics and evaluate what is happening. Once you determine the LMI is fine, you need to determine if the far end is up and the local DLCI active. An inactive DLCI means the far end is down, deleted means the local DLCI is wrong or not working. To do this use the "show frame-relay pvc" command and evaluate the output:

Router#sh fr pvc

Frame Relay Virtual Circuit Statistics for interface FR 1

ActiveInactiveDeleted Static
local100 1

DLCI = 16, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = FR 1.16

MTU: 1500
input pkts: 10output pkts: 10 in bytes: 1000
out bytes: 1000dropped pkts: 0 in FECN pkts: 0
in BECN pkts: 0in DE pkts: 0 out DE pkts: 0

pvc create time: 00:00:00:15 last time pvc status changed: 00:00:00:47

[Back to Top]


I try to Telnet to my unit but get disconnected, what's wrong?

If you plan on providing Telnet access to your NetVanta 3200 you MUST set a Telnet password. Use the following commands to enable Telnet on the virtual console interfaces while in configuration mode:

Router (config)# line telnet 0 4Router (config-telnet) login

Router (config-telnet) password <word>

Where <word> is the password you wish to use for Telnet. The Telnet password cannot be encrypted at this time.

[Back to Top]


What kind of circuit should I order for my NetVanta 3200?

The NetVanta 3200 has several Network Interface Modules (NIMs) to support various services. The T1 NIM is normally used with a ESF/B8ZS full or fractional T1 service. The T1 can be used for access to a frame relay provider or may be a dedicated point-point circuit. Normally, frame service is used for service over longer distances (also called inter-LATA). Dedicated or point-point T1 service is most cost effective for intra-LATA (within a city or town) traffic. Additionally, a DDS NIM is available for 56 or 64Kbps access service. This transport can also be used for frame relay or point-point services. Finally, a V.35 or Serial NIM is available for connection to SMDS, ATM, or other access service for point-point or frame access.

[Back to Top]


How do I set the router up for host mode operation? I want to put the router in the field and configure it remotely.

Setting up the NetVanta 3200 for host mode is very easy. First, erase any configuration in the router by issuing the "erase start" command at the privileged prompt. Reload the router. Next disable IP routing by issuing the "no ip routing" command. Next assign an ethernet IP address and "no shut" the ethernet interface. Finally, enter a default gateway as shown below. Do NOT use the gateway of last resort or default route since this command is only useful in the router mode (e.g. x.x.x.x 0.0.0.0 0.0.0.0 a.b.c.d.).

Router(config)# ip default-gateway a.b.c.d

Where a.b.c.d is the router's directly connected interface that will serve as the default gateway for the NetVanta 3200.

[Back to Top]


When should I use a router, and when should I use a bridge?

A router is useful to divide high traffic networks into smaller, logical entities. The bridge also divides networks for the purpose of making them more efficient. The difference is that the bridge does its dividing based on the MAC or layer 2 address, and the router divides based on IP or layer 3 address. So the router divides broadcast domains, and the bridge (or switch) divides the collision domain. As the previous definition implies, the collision domain is that collection of wiring and devices that all contend for the same bandwidth. Consider that we start a company and connect all our workstations and servers to a series of hubs. As the company grows, and finally expands to a second building we notice that our traffic is growing slower. A bridge is selected to connect the 2 buildings together. Since a bridge divides the collision domain each building gets its own 100 Megabit LAN to share among that building's computers. If any Ethernet frame is destined for the other building it is forwarded through the bridge. The bridge learns which computer (MAC address) is in each building. So traffic from one building does not affect the other – except for broadcasts. As broadcasts in the 2-building network grow we replace our bridge with a router. All the computers in each building need to be given an IP address in that building's own unique network. No broadcasts are sent between building because the router divides the broadcast domain.

So:

Bridges Routers
Divide collision domain Divide broadcast domains
Forward based on MAC address Forward based on Network Address
Forward all protocols Only forward routable protocols
Consume high bandwidth Bandwidth frugal

If you need to add a building or remote network to your building and only routable protocols like IP are on the LANs, use a router. Lower bandwidth links can be used between locations increasing efficiency. If only a few non-routable protocols are also being used consider setting up simple bridging where IP is routed and all other protocols are bridged. The NetVanta 3200 supports this mode of operation. Finally, if only non-routable protocols are in use, or ample bandwidth is available and simplicity is needed (simple LAN joining desired), use a bridge.

[Back to Top]


My T1 is not up, what's wrong?

First, review the T1 settings. The defaults expect the incoming T1 to be ESF/B8ZS. The defaults also assume that the timing source for the system is the network. Also ensure that the T1 interface is administratively up by issuing the "no shut"command in T1 interface configuration mode. If the T1 is still not active, connect a loopback plug in the T1 RJ-45 jack. While in T1 interface configuration mode, enter the command "test QRSS." Next, while still in T1 interface configuration mode enter "test clear." Let the test run for a minute or so and then enter "show QRSS." The count should be 0 indicating no errors while in loop. To verify QRSS is working you may wish to use the "test insert" command to inject a single error, and use the "show QRSS" command to see the single error injected. If the interface becomes active with no errors, you may safely assume there is an issue with the Telco circuit. If there are errors on a valid loopback the NIM may need to be repaired. The show interface t1 1/1 should look like:

Router#sh int t1 1/1t1 1/1 is UPTdm group 1 encapsulation type is not setDescription: t1 1/1T1 coding is B8ZS, framing is ESFClock source is Line, FDL type is ANSILine Build Out is 0 dbNo remote loopbacks, No network loopbacksDS0 Status: 123456789012345678901234NNNNNNNNNNNNNNNNNNNNNNNNLine Status: -- No Alarms --Current Performance Statistics:0 Errored Seconds, 0 Bursty Errored Seconds0 Severely Errored Seconds, 0 Severely Errored Frame Seconds0 Unavailable Seconds, 0 Path Code Violations0 Line Code Violations, 0 Controlled Slip Seconds

0 Line Errored Seconds, 0 Degraded Minutes

[Back to Top]


What does a router do?

A router like the NetVanta 3200 is used to properly send Internet Protocol ( IP, the language of the Internet) packets from one location (network) to another. The router is capable of terminating a broadcast domain, effectively allowing high traffic IP areas to be divided into separate, lower traffic logical entities called networks. Each of these networks is assigned a unique IP address of the form A.B.C.D. Part of each network address is the subnet mask. The mask is used to determine which of the 32 bits in the address are used to identify networks, and which are used to determine the host address. In the IP address 192.168.10.1 mask 255.255.255.0, the first three bytes (all 255, or ff – hex, 11111111 binary) of the mask indicate that the first three bytes of the address are the network part. Therefore the unique network number in this system is 192.168.10.0. The address also indicates that this address is #1 of 254 possible host addresses.

[Back to Top]


How do I assign IP addresses to my network?

IP (Internet Protocol) addresses should be assigned logically and in a fashion to simplify the routing task. IP addresses come in two types: public and private. Public addresses are purchased from an Internet Service Provider (ISP) and are required for operation to and from the world wide Internet. Private addresses are not routed on the Internet and consist of three ranges: class A network 10.0.0.0/8, class B networks 172.16.0.0/12 and class C network 192.168.0.0/16. The simplest of these are the class C networks. They allow up to 254 host addresses on a single network and require no specialized subnetting. So the networks 192.168.1.0 – 192.168.254.0 with the default mask 255.255.255.0 are available for internal use. Try to use adjacent networks when possible in order to summarize if necessary. As an example:

Central site – IP address 192.168.1.0/24 Private networks summarized as 192.168.0.0/14
Remote branch 1 – IP address 192.168.2.0/24
Remote branch 2 – IP address 192.168.3.0/24

Several books are available on basic networking. These texts can provide further information on subnetting, which is needed for using the large class A 10.0.0.0 network. Also they discuss the concept of NAT or Network Address Translation. Many companies internally use private addresses and use a firewall/router like the ADTRAN 2100 to map to one or more public addresses on a shared basis. The advantages of this approach include: protecting the identity of the workstations from Internet hackers, decreasing the cost of Internet access by using fewer public addresses, and providing access control of Internet resources.

[Back to Top]


What is a VT 100 terminal emulator?
 

A VT 100 terminal emulator is a software package that allows an end-user to communicate with a DCE device (data communications equipment) locally or remotely. A VT 100 terminal emulator can be used to configure the NetVanta 3200 router products by issuing configuration commands directly to the unit. The proper default setting for the terminal program port setup is 9600 bps, 8 data bits, no parity bits, and one stop bit. Please refer to the User Manual for more information about the VT 100 terminal menu.

[Back to Top]


 

Router Partner
Telecom Corridor
301 S. Sherman St.
Suite 117
Richardson, Texas 75081
USA
Tel: 1-972-234-4343
Fax: 1-972-234-4295
sales@industrialpartner.com