 bigdogg2
join:2004-08-11
| 2610 Cisco / WIC 1ENET Issues
I finally maxed out the memory in my 2610 Router and got the newest IOS loaded but I still can't see the WIC 1 ENET card that I have installed in the slot. I did a sh int with no luck I just see the following:
Ethernet0/0 is up, line protocol is down Serial1/0 is administratively down, line protocol is down Serial1/1 is administratively down, line protocol is down Serial1/2 is administratively down, line protocol is down Serial1/3 is administratively down, line protocol is down
But it does not show the Ethernet card that I inserted in the router? I'm I trying to use the wrong card?
Thanks,
BiG |
|
 csalazarv Premium join:2004-01-21 Costa Rica | unfortunately (and I made the same mistake......) the wic-1enet is NOT for the 2600 series, its for the 1700
if you want to add ethernet ports you need to get either a nm-1e or a nm-4e |
|
 bigdogg2
join:2004-08-11 | reply to bigdogg2 Thanks for the quick response! I will sell my serial card because for right now I just need ethernet ports....
Thanks Again,
BiG |
|
 csalazarv Premium join:2004-01-21 Costa Rica | reply to bigdogg2 look on ebay, there is a guy in hong kong that sells nm-4e, I am not promoting the guy but I have bought several from him and he is reliable. |
|
 bigdogg2
join:2004-08-11
| reply to bigdogg2 Besides using the cards above can I use my existing hardware at all?
I have one integrated Ethernet port and a 4A/S card but I want to use this router with a SDSL line. Is there any piece of hardware I can attach to the serial line to act as an Ethernet port? Or is this very far fetched?
If not I will buy one the above cards do you have a link for the guy on ebay?
Thanks,
-BiG |
|
  Oxygen Times Square can't shine as bright Premium join:2001-12-04 Nesconset, NY | »search.ebay.com/nm-1e_W0QQfromZR···ZnmQ2d1e |
|
 csalazarv Premium join:2004-01-21 Costa Rica
| reply to bigdogg2 the only thing I can think of is to attach ANOTHER router that has an ethernet port using a crossover cable (back to back serial connection)
one of the routers would be connected to the SDSL modem via its ethernet port and the other one would be going to the switch of your lan
other posibility is that the CSU/DSU of SDSL actually uses a serial port, in here SDSLs have a v35 interface so the router you would use actually needs one serial and one ethernet port, but I have no clue what kind of CSU/DSU is used over there by your provider |
|
 bigdogg2
join:2004-08-11
| reply to bigdogg2 Thanks for the link! I guess I will try to sell my serial card and then buy one with an ethernet port:\
I do have a Cisco 806 router loaded with the newest IOS that I'm currently using. I wanted the 2610 so I can create vlans with my dell switch atleast this is the method behind my madness! The current modem I'm using is Paradyne and I have a crossover cable going over to my 806 router/firewall. So this does not have a serial interface:( So I guess I'm stuck buying a ethernet card for the router. Any more suggestions would be great! |
|
 aryoba Premium,MVM join:2002-08-22
| If you wish, you can use the onboard Ethernet 0/0 port of the 2610 to do inter-VLAN routing and trunking. Yes, a 10 MBps interface of a router can do inter-VLAN routing and trunking (with some limitation of course).
I have a 2610 run IOS image of IP FW/VPN/3DES/IDS PLUS version 12.3.12a that is currently setup for inter-VLAN routing and trunking with dot1q encapsulation, using the onboard Ethernet 0/0 port.
However if you still wish to get another Ethernet module for the 2610, get NM-1FE-TX. You should be able to find one from ebay. |
|
  tomkb Premium join:2000-11-15 Avon, OH clubs: | reply to bigdogg2 fyi, the nm-1e is not fast ethernet. The 2610 will not accept the nm-1fe either.
Best bet might be to get a used 2621.
In any event, I have a nm-1e I was going to put on ebay, IM me if you are interested in buying. |
|
 aryoba Premium,MVM join:2002-08-22
| tomkb: "The 2610 will not accept the nm-1fe either"
Comment: Yes and no. No according to Cisco. However yes in reality with proper IOS image.
FYI, even 2610 can take NM-1A-OC3MMF!  |
|
  tomkb Premium join:2000-11-15 Avon, OH clubs: | Didn't know that! thanks. |
|
 bigdogg2
join:2004-08-11
| reply to bigdogg2 aryoba,
So I could do something like this for Ethernet 0/0:
interface Loopback0 ip address 10.255.255.10 255.255.255.255 ! interface FastEthernet0/0 description Trunk Internal Network ip address 10.0.1.1 255.255.255.0 speed 100 full-duplex ! interface FastEthernet0/0.5 encapsulation dot1Q 5 ip address 10.35.1.1 255.255.250.0 ip helper-address 10.33.1.18 ! interface FastEthernet0/0.6 encapsulation dot1Q 6 ip address 10.34.1.1 255.255.248.0 ! interface FastEthernet0/0.7 encapsulation dot1Q 7 ip address 10.60.1.1 255.255.255.0 no snmp trap link-status
ip route 10.35.0.0 255.255.250.0 10.255.255.2 permanent ip route 10.34.0.0 255.255.248.0 10.255.1.2 permanent ip route 10.60.0.0 255.255.255.0 10.255.255.2 permanent
I'm very new as I say in all my posts but I want to see if I'm on the right track? I'm not sure if this will work with my Dell 3024 manageable switch. I don't have a ton of traffic so the 10mb interface shouldn't matter.
Let me know if this makes any sense
Thanks, BiG
PS
I guess I can use ACL's between the subnet's to control certain traffic? |
|
 aryoba Premium,MVM join:2002-08-22
| bigdogg2,
Doing trunking on interface Ethernet follows the same logical procedure as doing trunking on interface Fast Ethernet:
* You DO NOT set network segment under the "main interface"; only under the sub interfaces.
* If you wish the router handles the native VLAN, you should set a sub interface as native VLAN interface administrator.
Illustration as follow:
interface Ethernet0/0 description Trunk Internal Network no ip address ! interface Ethernet0/0.1 description Native VLAN encapsulation dot1q 1 native ip address 10.0.1.1 255.255.255.0 ! interface Ethernet0/0.5 description VLAN 5 encapsulation dot1q 5 ip address 10.35.1.1 255.255.255.0 !! Note: subnet 255.255.250.0 is invalid !! ! interface Ethernet0/0.6 description VLAN 6 encapsulation dot1Q 6 ip address 10.34.1.1 255.255.248.0 ! interface Ethernet0/0.7 description VLAN 7 encapsulation dot1Q 7 ip address 10.60.1.1 255.255.255.0
Does the dot1q trunking work on Dell switches? If the switches support such dot1q trunking (which is the industry standard), then the configuration should work. However it is always fun to experiment 
As to the following static routes: ip route 10.35.0.0 255.255.255.0 10.255.255.2 permanent ip route 10.34.0.0 255.255.248.0 10.255.1.2 permanent ip route 10.60.0.0 255.255.255.0 10.255.255.2 permanent
they are improper since the network segments (10.35.0.0/24, 10.34.0.0/22, and 10.60.0.0/24) are directly-connected networks. In short, never set such routes for directly-connected networks. |
|
 bigdogg2
join:2004-08-11 | reply to bigdogg2 Thanks for the feedback it's all a big learning process when I get some time in the next few weeks I will test it out and keep you posted:D
Thanks Again,
BiG |
|
 bigdogg2
join:2004-08-11
| reply to bigdogg2 Besides using the router as a intervlan router I want to use it as my firewall / vpn concentrator. I know it seems like a bit much but it's a home network with only two users connecting to it. So I will attempt to find a NM-1FE-TX card on e-bay and buy it:D If you know of anyone that has one for sale let me know.
Thanks Again,
BiG |
|
 aryoba Premium,MVM join:2002-08-22 | FYI, the router need to run IOS image that support FW (Firewall) and VPN to make it work. As example, the image filename should be IP FW/VPN/3DES/IDS PLUS.
When the VPN requirement is higher, you can always install the VPN module. |
|
 bigdogg2
join:2004-08-11 | reply to bigdogg2 Yep I have the latest IP FW/VPN/3DES/IDS PLUS IOS. I just need to get another Ethernet port and I should be ready for testing:D Thanks!! I will keep ya posted:) |
|
 bigdogg2
join:2004-08-11 | reply to bigdogg2 With the IOS I just listed would I be able to use a nm-1fe card? I'm looking on fleebay now:) |
|
 aryoba Premium,MVM join:2002-08-22 1 edit | The image should work  |
|