12-01-2010 03:21 AM - edited 12-01-2010 08:18 AM
I have one SRX240 and one cisco 6509 switch
Cisco6509 -------- SRX240
I have configured the Cisco but I don't know how to configure the srx. Could some one please show me how to configure on the srx?
Here's the cisco config:
interface GigabitEthernet1/1
description Connect to Juniper SRX240
switchport
switchport access vlan 100 << this is an access port and only vlan 100 is allow to pass through.
switchport mode access
switchport nonegotiate
Thanks in advance
12-01-2010 08:14 AM
what does the show interface ge-3/0/0 detail show ?
if you set vlan.1 with an IP, do you have any MAC in the arp table ? (I assume not).
If you connect a pc directly to the ge-3/0/0 or ge-2/0/0, can you ping the srx from the pc or pc from the srx ?
12-01-2010 08:32 AM
If you don't need layer three just do the following...
vlans {
v100 {
vlan-id 100;
interface {
ge-0/0/0.0;
}
}
}
This puts the port in vlan v100 with a vlan-id of 100. If you need layer three termination you can add the
interfaces {
vlan {
unit 100 {
family inet {
address 1.1.1.1/32;
}
}
}
}
vlans {
v100 {
vlan-id 100;
interface {
ge-0/0/0.0;
}
l3-interface vlan.100;
}
}
__________________________________________________
I also see that vlan with an id of 100 is commonly associated with voice, CME and such... If that's the case, just do the following...
ethernet-switching-options {
voip {
interface ge-0/0/0.0 {
vlan 100;
}
}
}
vlans {
v100 {
vlan-id 100;
}
}