This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

VLANS and Cisco 2960

I am trying to setup ASG 7.002 to support VLANs. I am using the following configuration:

Cisco 2960

interface GigabitEthernet0/19
 description ASG
 switchport mode trunk
 switchport nonegotiate

ASG:
Interface eth0 is an Intel 82547GI 
Configured as VLAN interface with VLAN id 1
IP Address: 172.16.1.1/24

When I am using this configuration I loose net connectivity. All servers are on VLAN1 and ofcourse are using the same subnet. Even if I set Cisco to static VLAN 1, same thing happens. If I set eth0 on ASG as a standard interface, everything works correctly.

Any help will be appreciated.


This thread was automatically locked due to age.
Parents
  • encapsulation and allowed vlans are missing.

    ... a working example (CISCO 3750)

    -------------------------------
    interface FastEthernet1/0/14
     description Link to Astaro ASG 120 Interface LAN2/Trunk
     switchport trunk encapsulation dot1q
     switchport trunk allowed vlan 10,30,40,50,70
     switchport mode trunk
     no ip address
     no mdix auto
    -------------------------------
  • Hello ClausP,
    In 2960 series only dot1q is supported so the "switchport trunk encapsulation dot1q" command is not supported. Also I have enabled all vlans for trunking "switchport trunk allowed vlan all"; that's why it does not show in running config.
  • the problem is vlan1, because cisco uses this as the default vlan and its untagged in a trunk. any hints?
  • I've tested to move all my pilot workstations and servers to VLAN10 instead of 1. With this configuration VLAN capabilities of Astaro are working. The problem is, as previously posted by Graf****o, the native vlan "issue" which is not tagged by default as it is the native vlan. Unfortunatelly in Cisco 2960 series I cannot find any support for native vlan tagging.
Reply
  • I've tested to move all my pilot workstations and servers to VLAN10 instead of 1. With this configuration VLAN capabilities of Astaro are working. The problem is, as previously posted by Graf****o, the native vlan "issue" which is not tagged by default as it is the native vlan. Unfortunatelly in Cisco 2960 series I cannot find any support for native vlan tagging.
Children
  • Try the "vlan dot1q tag native" global config command. Worked on my 2970G switch, maybe it works on the 2960 as well.
  • Instead off changing the (config)#switchport trunk native vlan X in global configuration you should put a (config-if)#switchport trunk native vlan X on the interface configuration.

    In fact with tuncking cisco do not accept that the native vlan is taged. default config have the global switchport trunk native vlan 1. so you should not send packet with vlan 1.

    you can put in trunk native any vlan even if the vlan is not created in vlan database.

    You can also configure on the same astaro interface a native vlan (standard interface so cisco put vlan 1 on your packet) and astaro vlan Interface. so change your astaro interface for standard instead of vlan interface and make additional virtual interface in vlan interface.