- Community Home
- >
- Networking
- >
- Legacy
- >
- Switches, Hubs, Modems
- >
- Re: Inter VLAN Routing - Cisco 1841 and HP2510
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-08-2009 03:05 PM
11-08-2009 03:05 PM
Inter VLAN Routing - Cisco 1841 and HP2510
Below is my configuration on the switch and the router:
HP2510
------
Running configuration:
; J9019A Configuration Editor; Created on release #Q.11.07
hostname "CEPACT-BLD-2"
snmp-server community "public" Unrestricted
vlan 1
name "MMGNT"
untagged 1-23,26
ip address 192.168.11.3 255.255.255.0
tagged 24-25
exit
vlan 2
name "SRV-PRT-CLNT"
no ip address
tagged 24-25
exit
vlan 3
name "VoIP"
no ip address
tagged 24-25
exit
Cisco 1841
--------------------
Current configuration : 1216 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname ciscoCETC
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$eomE$7R.KO87o.hwjCOSrDWHGZ/
enable password spc
!
no aaa new-model
ip cef
!
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
no mop enabled
!
interface FastEthernet0/0.1
description MMGNT
encapsulation dot1Q 1 native
ip address 192.168.11.1 255.255.255.0
!
interface FastEthernet0/0.2
description SRV-PRT-CLNT
encapsulation dot1Q 2
ip address 192.168.10.253 255.255.255.0
!
interface FastEthernet0/0.3
description VoIP
encapsulation dot1Q 3
ip address 192.168.62.1 255.255.255.0
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0/0
description LINK TO NABUA - 168350
ip address 192.168.1.6 255.255.255.252
clock rate 2000000
!
ip forward-protocol nd
!
!
ip http server
no ip http secure-server
!
snmp-server community public RO
!
!
!
control-plane
!
!
!
line con 0
line aux 0
line vty 0 4
password spc
login
!
scheduler allocate 20000 1000
end
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-08-2009 09:19 PM
11-08-2009 09:19 PM
Re: Inter VLAN Routing - Cisco 1841 and HP2510
untag the ports (24,25) in vlan 1 and see if that works.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-09-2009 12:37 PM
11-09-2009 12:37 PM
Re: Inter VLAN Routing - Cisco 1841 and HP2510
Router
-------
interface FastEthernet0/0
description MMGNT
ip address 192.168.11.1 255.255.255.0
ip helper-address 192.168.10.3
ip nbar protocol-discovery
ip route-cache flow
duplex auto
speed auto
!
interface FastEthernet0/0.1
description SRV-PRT-CLNT
encapsulation dot1Q 2
ip address 192.168.10.253 255.255.255.0
ip helper-address 192.168.10.3
!
interface FastEthernet0/0.2
description VoIP
encapsulation dot1Q 3
ip address 192.168.62.1 255.255.255.0
ip helper-address 192.168.10.3
Switch
------
Running configuration:
; J9019A Configuration Editor; Created on release #Q.11.07
hostname "CETC-OFFICE"
interface 25
speed-duplex 1000-full
exit
ip default-gateway 192.168.11.1
snmp-server community "public" Unrestricted
vlan 1
name "MMGNT"
untagged 24
ip address 192.168.11.3 255.255.255.0
tagged 25-26
no untagged 1-23
exit
vlan 2
name "SRV-PRT-CLNT"
untagged 1-23
no ip address
tagged 24-26
exit
vlan 3
name "VoIP"
no ip address
tagged 24-26
voice
exit
management-vlan 1
--------------------------------------------
Can someone explained why I have to untagged port 24 on VLAN 1 and tagged it on the other 2 VLAn's ? Port 24 is where the router fastethernet is connected to
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-09-2009 09:25 PM
11-09-2009 09:25 PM
Re: Inter VLAN Routing - Cisco 1841 and HP2510
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-10-2009 04:04 PM
11-10-2009 04:04 PM
Re: Inter VLAN Routing - Cisco 1841 and HP2510
Once again thank you
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP