Question : Carrying mutliple VLANs

I am reading a huge user guide from Cisco on how to setup mutliple VLANs on a Cisco 5505. Here is what I would like help with. We have 1 Cisco 5510 and 5 Cisco 5505 that all connect to each other via a VPN tunnel. Now we are partnered with the local county here that is giving us a virtual firewall.  So how would we setup the 5510 and the 5505's to carry 2 VLANs, so that I can put our branch staff on one VLAN at each location and our other computers on our Public VLAN.

Answer : Carrying mutliple VLANs

If both if's are false, it is not returning anything
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
public String enhdtest(String country,Container container){

 
int indcount= 0; 
int usacount= 0;
 
if(country.equals( "INDIA"))
indcount ++;

if(country.equals( "USA"))
usacount++;

if(indcount != 0)
return "BSINDIA";

if(usacount != 0)
return "BSUSA";

return "DEFAULT";
}
Random Solutions  
 
programming4us programming4us