Connection problems SSID with several VLANs

Hi all

I'm having a little problem getting a device to associate with an access point and enter an IP via DHCP on a particular SSID. This access point has two VLANs, with two different SSID configured. The configuration is locked. For some reason I can't connect to 2 SSID on my wireless device, but the SSID works very well. I see authentication through the newspaper, so I know that the pre-shared key is correct, but may not enter an IP address (which makes me think I have a problem in the bridge group). Any thoughts?

Also, I tried both a trunk port and an access port on the switch that is connected to the access point. With both, I can connect and enter an address IP of the VLAN 20 (SSID 1), but not to VLAN 10 (2 SSID).

SSID dot11 1

VLAN 20

open authentication

authentication wpa key management

WPA - psk ascii 'key '.

!

SSID dot11 2

VLAN 10

open authentication

authentication wpa key management

Comments-mode

WPA - psk ascii 'key '.

Bridge IRB

!

!

interface Dot11Radio0

no ip address

no ip route cache

!

algorithms for encryption tkip encryption mode

!

encryption vlan 20 tkip encryption mode

!

encryption vlan 10 tkip encryption mode

!

SSID 1

!

SSID 2

!

antenna transmit right

straight reception antenna

root of station-role

Bridge-Group 1

Bridge-Group 1 block-unknown-source

No source of bridge-Group 1-learning

unicast bridge-Group 1-floods

Bridge-Group 1 covering-disabled people

!

interface Dot11Radio0.10

encapsulation dot1Q 10

no ip route cache

Bridge-group 10

10 bridge-group subscriber-loop-control

Bridge-group 10 block-unknown-source

No source of bridge-group 10-learning

No bridge group 10 unicast-flooding

Bridge-group of 10 disabled spanning

!

interface Dot11Radio0.20

encapsulation dot1Q 20

no ip route cache

Bridge-group 20

Bridge-group subscriber-loop-control 20

Bridge-group 20 block-unknown-source

No source of bridge-group 20-learning

No bridge group 20 unicast-flooding

Bridge-group 20 covering people with reduced mobility

!

interface FastEthernet0

no ip address

no ip route cache

automatic duplex

automatic speed

!

interface FastEthernet0.10

encapsulation dot1Q 10 native

no ip route cache

Bridge-Group 1

No source of bridge-Group 1-learning

Bridge-Group 1 covering-disabled people

!

interface FastEthernet0.20

encapsulation dot1Q 20

no ip route cache

Bridge-group 20

No source of bridge-group 20-learning

Bridge-group 20 covering people with reduced mobility

!

interface BVI1

192.168.0.210 IP address 255.255.255.0

no ip route cache

Default IP gateway 192.168.0.1

1 channel ip bridge

Thanks for your help!

Your bridge-groups do not have the tail. You have 10 VLANS mapped to bridge-Group 1 on the FastEthernet interface but mapped to bridge-group 10 on the radio just remove the bridge Group 1 of the main radio interface and apply it to the subinterface dot0.10.

Tags: Cisco Wireless

Similar Questions

  • SA520W VPN from Site to Site with several VLANs

    Hello

    I have a customer here with several VLANS in their places who wants to set up a VPN from Site to site between 2 devices SA520W. Unfortunately I can not find a way to set it up. In the VPN policy, I can choose between everything (which is not what I want, I want only traffict between subnets the routed via VPN), IP address unique, a beach (in a subnet) and a subnet itself - but only one. I don't find a way to configure several subnets in the selection of local traffic and remotely. Adding another IKE policy between the 2 sites does not either (which is good normally).

    Any ideas? Anything I'm doing wrong?

    Thank you for your help.

    Best regards

    Thomas

    I know that if you have an ASA or a router, you can define as VLANS to pass through the tunnel.

    Do not have access to a SA520W to test...

    A recommendation might be to post the question on the SMB community where they answered questions related to this product, just to check what other people did.

    Federico.

  • How to connect the Ombudsman with several bpel process

    Hi Please someone tell me how to connect the Ombudsman with several processes bpel in soa 11g

    And here

    http://eoracleapps.blogspot.com/2009/11/how-to-call-synchronous-BPEL-process.html

  • Connect by level - with several lines of inpur

    Very simplified, I have this table - it has a 'table' as a variable-length structure.

    I need x line of output for each input line (do not use pipelining og PL/SQL function)
    Wih a single line as input of the "log in"-it works of course.
    drop table test3;
    create table test3 (id number, tekst varchar2(20));
    
    insert into test3 values (1, 'acbdef');
    insert into test3 values (2, '123');
    insert into test3 values (3, 'HUUGHFTT');
    insert into test3 values (4, 'A');
    insert into test3 values (5, 'AKAJKSHKJASHKAJSHJKJ');
    commit;
    
    with tal as
    (
    select * from
    (select a.*, rownum rn
    from test3 a)
    where rn < 2)
    ------
    select tekst, level , 
    substr(tekst,(level-1)*1+1, 1) content
    from tal
    connect by level < length(tekst) 
    ;
    How to achieve the same thing for several input lines?
    I know I can do it in PL/SQL using plan either pl or just a function in the pipeline, but I prefer a clean if possible SQL.
    I tried to do in a cross join test3 and (select different values of double the test3 table) and other versions, but all with syntax errors
    with tal as
    (
    select * from
    (select a.*, rownum rn
    from test3 a)
    where rn < 3)
    ------
    select * from test3 cross join table 
    (
    select tekst, level , 
    substr(tekst,(level-1)*1+1, 1) content
    from dual
    connect by level < length(tekst)
    )
    ;
    Oracle version will be 10.2 and 11 +.

    I think it's kind of what you're looking for:

    with tal as
    ( select 1 id, 'acbdef' tekst         from dual union
      select 2   , '123'                  from dual union
      select 3   , 'HUUGHFTT'             from dual union
      select 4   , 'A'                    from dual )
    ------
    select  id, tekst, level, substr(tekst,(level-1)*1+1, 1) content
      from  tal
    connect by (    level <= length(tekst)
               and  prior id = id
               and  prior dbms_random.value is not null
               )
    ;
    
            ID TEKST         LEVEL CONTENT
    ---------- -------- ---------- -------
             1 acbdef            1 a
             1 acbdef            2 c
             1 acbdef            3 b
             1 acbdef            4 d
             1 acbdef            5 e
             1 acbdef            6 f
             2 123               1 1
             2 123               2 2
             2 123               3 3
             3 HUUGHFTT          1 H
             3 HUUGHFTT          2 U
             3 HUUGHFTT          3 U
             3 HUUGHFTT          4 G
             3 HUUGHFTT          5 H
             3 HUUGHFTT          6 F
             3 HUUGHFTT          7 T
             3 HUUGHFTT          8 T
             4 A                 1 A       
    
  • Relay 2 4410ns with the VLAN

    Greetings,

    I recently bought 2 4410n APs with the hope to fill some buildings together.  Ive found that the APs have a limited support to connect a SSID to a VLAN and AP even accepts traffic marked side wired (obviously, for several virtual local area networks).  Howerver, it does not appear that fill 2 tagged APs traffic passes together on the bridge... Miss me something, or APs does not send tagged traffic in the wireless?

    Thank you

    I think I have it working.  on the wireless > VLAN & QoS tab, select "VLAN Tag on WDS.

  • Several VLAN, SSID

    I get to the point where my campus wireless network grows beyond the size of the subnet that I am uncomfortable dealing with.  I have a WISN and WCS and spin the latest IOS on each.  Is it possible to use several VLANS on a campus-wide SSID?

    Or, can I put the same SSID on both controllers and map it to two separate without causing problems roaming VIRTUAL networks?

    Thank you

    Eric

    Hi Eric,.

    Yes we do, and this feature is called grouping AP on WLC... Here is the sample configuration to do the same thing...

    http://www.Cisco.com/en/us/Tech/tk722/tk809/technologies_configuration_example09186a008073c723.shtml

    Concerning

    Surendra

  • With device log Insight network connectivity problem

    We manage the virtual appliance 1.0 - beta and I noticed that the virtual appliance will fall the network periodically for a short period. I had constant pings, it will and it will just stop respond for anywhere from a few seconds to several minutes. You can also see in the capture where the data is missing in the user interface of screen attached. I know that we are not the problems with our ESXi hosts or dvSwitch because there are many other virtual machines running on the same host ESXi and same VLAN and they are not network connectivity problems. Does anyone else know this?

    Sounds like a network problem. Perhaps you have a dual IP / MAC address on the network? Do you perhaps have a routing problem on the network log Insight's sitting on that?

    Can you generate a bundle of support and download the instructions here: http://kb.vmware.com/kb/100852 (no need to SR just create a file called mvanbeck)

  • Satellite L35 (US) with Atheros AR5005G wireless connection problems

    I have a Toshiba L35 (Windows Media Center Operating System) with the software WiFi Atheros AR5005G. This machine was purchased in the United States.

    While in the United States the Wi - FI connection to a router (Linksys) using Windows to configure was instant without any problem.

    I am now in England and when I try to connect to a Modem/Router (3 com), use Windows to configure, connection is spasmodic with what makes a connection on every five attempts. Several times I have to use the repair connection device trying to connect. When it connects the connection is good. When you use the repair it shows unable to renew your IP address if it connects. On other occasions, I use the network connection Panel and 'disable' then 'activate' then most guarantees a connection.

    The laptop provides instant connection when you use a card PCMCIA WiFi with Windows to configure. While the card is inserted the s computer WiFi connect instant however when the card is removed and the computer restarted the same problems occur for a computer, free WiFi!

    Other laptops have no problems to connect to my Modem/Router. I am convinced that it is working properly.

    All regional/language settings in the control panel have been updated with the United Kingdom.

    No undates are available for the Atheros Driver or BIOS.

    Anyone can help identify the problem/possible settings to change?

    Hello

    Satellite L35 is a portable American designed for the American market. BIOS and drivers should be downloaded from the Toshiba site we and not on Toshiba Europe site.

    However, the error message Impossible to renew your IP address is known to me and my brother had the same problem with the Intel card. I just updated the WLan driver and used the Intel Proset utility for WLan configuration.

    I see that you have the Atheros card. The Atheros also provide an Atheros WLan client utility. Try to use instead of the clean Windows configuration.
    In addition, place check WLan card properties. You will find energy saving option. Please turn it off and check the Advanced tab

  • Go off & on several times before the monitor turns on. Comp seems to start OK but the problem is with the screen.

    Original title: XP start help please...

    ... are to be turned off & on several times before monitor lights. Comp seems to start OK but the problem is with the screen. Do I have to make a boot disk & if so - HOW?

    Hello

    ·         What is the brand and model of the computer?

    ·         You get the error message?

    ·         Did you check the connection of the cable to the monitor?

    ·         Have you tried to update to the latest graphics card and motherboard chipset drivers?

    First, try to connect your monitor to a well known PC, maybe the old laptop that you use now. If the monitor works, the problem is with the video card in your PC. If the monitor does not light, the monitor. It is usually cheaper to buy a new monitor that in order to be an old repaired, unless the monitor is still under warranty.

    Try connecting a monitor well known to your PC. If the monitor works, your old monitor is fried and needs to be replaced.

    If your monitor works when connected to another PC, the problem could be your video card. First, and then you turn on your PC, the power and cooling case fans run they. If they do not, it could be the power supply.

    Then, open the computer case. Before you do anything inside, unplug the power supply.

    IMPORTANT! Touch any metal part of the computer case to connect to the PC. A single static spark can destroy computer circuits.

    If the video card is the type of card that plugs into a slot on the motherboard, remove the screws or attached at the top of the card, remove the card, to manipulate the card by the edges to avoid disturbing the circuits on the card, carefully and re - install the card. Sometimes simply reinstalling the card corrects the problem.

    If this does not work, replace the video card with a card of similar type. Perhaps now is the right time for an update of video card.

    If the video card is integrated into the motherboard, you can install a new card in one of the PCI slots on the motherboard. When the PC starts for the first time, go into the bios and disable the onboard video.

    Resources for troubleshooting problems in Windows XP

    http://support.Microsoft.com/kb/307960

  • SWITCH Cisco/Linksys SLM224G: Problem with the VLAN

    Hello!

    I'm trying to set up a VLAN in my baskets. I have some knowledge about VLANs, but I still can not configure in my path.

    My situation:

    I have PC that contains two virtual machines, which works as a router between three networks: LAN, WAN, LAN2. It's a bit complicated, but I'll try to draw:

                                                     |-------------||----------------------------|                   |           e1|-to-eth1-VM2-----WAN|VirtualMachine 1        eth0|---trunk-VLAN1&2---|g1         e2|-to-eth0-VM2-----LAN2|eth0=VLAN1 eth1=VLAN2       |                   |           e3|-to-eth0-VM2-----LAN2 etc.|                         PC |                   |   SWITCH  e4||VirtualMachine 2            |                   |           e5|-to-eth1-VM1---wire-to-LAN2|eth0=VLAN3 eth1=VLAN4   eth1|---trunk-VLAN3&4---|g2         e6|-to-eth0-VM1-----LAN1|----------------------------|                   |           e7|-to-eth0-VM1-----LAN1 etc.                                                 |-------------|
    
    gX = Gigabit portseX = 100Mbit portsVMX = Virtual machine numberwire-to = patch-cord connection between ports on the switch
    
    Schema of routing and logical visibility:
    
    LAN1---VM1-----VM2---WAN              |LAN2----------|
    

    Important note is that LAN1 and LAN2 must be separated (visible only through routers). WAN must be visible through VM2 to LAN2 and through by VM1 and VM2 to LAN1. It seems easy, but VLAN that I did on this passage seems doesn't work.

    I do it like this:

    Step 1: Management of VLANS / create a VLAN...

    Creation of VLANS 1, 2, 3, 4 (numbers meters right now - I have now this number 1 is restricted to the switch).

    Step 2: Management of VLAN / Port to VLAN...

    Setting up VLAN1 with ports g1, e5 (the two labelled or not identified?-I have not seen any difference)

    Implementation VLAN2 with ports g1, e6, e7, etc...

    Implementation VLAN3 with ports g2, e2, e3, etc...

    Setting up VLAN4 with g2, e1 ports

    Step 3: Management of VLAN / Port setting...

    Implementation of ports e1 to PVID4 (chassis type = all I guess, but with "capture filter"?)

    Setting up port e2 at PVID3

    Setting up port PVID3 e3

    etc...

    Setting up port e5 for PVID1

    Setting up port e6 at PVID2

    Setting up port e7 for PVID2

    etc...

    Thus, on this configuration and that the switch it does not work for me

    I know that the switch is to see Mac since VLAN which is carried out by PC, because when I arrive in "Admin / dynamic address" I see pimps on the correct ports, with good VLAN ID. So the problem is to transmit a VLAN for their ports, then clear frames of ID and let the packets to go (and return: clear packages, add the VLAN ID and send to their Gigabit ports).

    Show the configuration is one of the many I tried :/ but I think this one is the best.

    Or maybe I don't know VLAN as I think and this scheme is impossible? Please tell me.

    Concerning

    and waiting for any suggestions,

    READ

    Hello.

    These products are processed by the Cisco Small Business Support Community.

    * If my post answered your question, please mark it as "acceptable Solution".

    * Do not forget to give a 'congratulations '. Thank you!

  • Nook Color ereader &amp; connectivity problems with router WRT610N

    I recently bought a new Nook color ereader for my wife. As long as a network administrator, I thought that this would be an easy task to configure the ereader to connect with my Linksys WRT610N router on the 2.4 Ghz band. But I'm running problems when connecting. The question seems to have intermittent connection problems where the meals seem to see the wireless network, authenicates, tries to get an IP address, then connects for a short period or removes the signal very quickly while being right on top of the router with the device.

    By the recommendations of various forums of Nook, I had the best luck with the following...

    2.4 Ghz band settings

    SSID: NookNetwork

    Channel width: 20 GHZ

    Standard channel: 9

    SSID Broadcast: enabled

    Security mode: WPA2 Personal

    Encryption: AES

    Passphrase: set out

    Key renewal: 3600

    UPNP: disabled

    RTS: default

    Defragmentation: default

    Tag: default

    However, the problem still resides in an intermittent connection to the wireless network. I also tried various arrangements of the channel to both channels 1, 6 and 11 with my best cponnecting chance to channel 9. I also played with the security and disabled all together and have plugged but always file (will not however run the unsecured network). Also try a tag value of 75, a framework of fragmentation of 2306 and 2307 RTS setting. My computer laptop while run and connect properly.

    I use the latest software updated both on the color of the corner. I am at the end and have searched high and low to get suggestions, and have not yet reached a compatible connection. Please help... Thank you! And my wife thank you in advance! Smiles!

    Mike

    Hi death,

    Thanks again for your comments and your concerns. Really appreciated!

    I took your advice and contacted Barnes & Noble for a new replacement and am waiting for the reception of the new unit as I type. If all goes well, we have reduced the problem and the replacement ends at our misfortunes... smiles!

    I'll let you know...

    Mike

  • SEVERE intermittent connection problems

    My family had our router wireless WRT54GX2 for a little more than three years now without any problems. However, last June (between 13 June and 20 June) my family went on vacation for a week to return to an intermittent connection of our router. I'VE isolated the problem to the router and not the Modem, our ISP or cords. Practically from the start, our connection went out for about 10 seconds usually every 40 seconds to 2 minutes (with varying degrees of severity). However, as time has passed, the problem got MUCH worse, to the point where (for about the last six days) at the time where our computer restores a connection the connection would have gone again (the router by totally unnecessary). This problem has been going on with the two wired our (modem router to the computer) and wireless devices. I looked at the "answer" to this problem on the support site, but I can't at the entrance of my value such MTU recommended in this response because the connection turns off so many times, I am unable still load page maintenance based on a browser to the router. Help would be appreciated, I have an annoying, nagging suspicion that the problem is with the hardware itself.

    Thanks for the suggestion. However, before I read that, I contacted a Customer Service representative using the Live Chat option and two of them concluded that my router was defective and qualifies for replacement. Thanks to all who tried to help!

  • iPhone/iPad connectivity problem with of 5508 WLC

    Hello

    We are implementing a new Cisco 5508 WLC and C3602I LWAP corporate wireless network. Us are not running no matter what RADIUS or EAP for now and start with WPA2 / AES with a pre-shared to start flying.

    The question that we are conducting is based iOS devices (iPhone/iPad) don't seem to want to connect. We just get one couldn't enter wireless messages. We had success with several portable Windows-based, my MacBook connects, as well as several different Android devices.

    Looking at the logs on the WLC I see those entries that correspond to the MAC address of my iPhone.

    * apfMsConnTask_6: 17:25:20.620 Jul 17: % CSA-3-CHECK_SUPP_RATES_FAILED: apf_utils.c:376 could not check support rate. Lack of support rate. Length: 0 mobile MAC: 24:ab:81:92:4 d: 97.

    Does anyone has any ideas or have encountered this problem before?

    Any help would be greatly appreciated.

    Thank you!

    Andrew

    What is happening with several iDevices?  Can you try to restart one of these iDevices, because there seems to be a problem with the unit and not the wireless.

  • Problem with the VLAN routing

    I try to put in place several VLAN on a Cisco 3560 switch. These new segments must be able to communicate with the VLAN 1 and even Internet access. I managed to add the VLAN and have network connectivity between the new VLAN.  However, these VIRTUAL to VLAN1 networks routing was not working properly.  Certainly something is missing or correct in this configuration. It would be much appreciated if someone can shed some light. Thanks in advance.

    Basic IP information:

    • Gateway 10.1.1.2
    • VLAN1: 10.1.1.1/24
    • VLAN2: 10.1.2.1/24
    • VLAN3: 10.1.3.1/24

    What works:

    • Hosts in VLAN 1 can ping the DG and access the internet
    • LAN 2 and 3 communicate with each other.  Hosts in VLAN2 (e.g. 10.1.2.2) can ping hosts in VLAN3 (e.g. 10.1.3.2) on the same switch
    • Hosts in VLAN 2 and 3 can ping to the IP of VLAN1 (10.1.1.1) interface

    What does not work:

    • Hosts in VLAN 2 and 3 cannot ping hosts in VLAN 1 on the same switch, or vice versa.
    • Hosts in VLAN 2 and 3 cannot even ping the DG.

    Yched blocks my post if I understand the config.  I'm sorry that I have to include it as an attachment.

    We have no information on the DG - what it is, how it is configured.  It is likely:

    1. unknown subnet vlan2 and vlan3 ranges.  Therefore can not to return packages for them.

    2. the default gateway for vlan1 customers is 10.1.1.2, so when customers vlan1 are trying to answer to vlan 2, 3, packets is directed to a DG, which probably ONLY has a default route to the Internet.

    3. once it is somehow solved (extra static on DG), Internet for vlan 2.3 will require same NAT rules with respect to the vlan 1.

  • Problem of size of form with several Digital Signatures

    I created a form (liveCycle 8) with several digital signatures.  When each user signs the form, this section of the form is locked using collections.  The form is workflow by email after each user connects it.  Whenever the user signs and submits the form, the size of the form becomes too great.

    How to optimize the form to compress whenever a user signs the form?

    Thank you

    Lori

    Steve,

    After your request to publish the form, I wanted to remove some elements of society, such as the Logo.  Once I removed the Logo, I found that the biggest problem was a Logo image size which was the large file.  Once I reduced the size of the image, added only 46 KB signatures at each level of signature.

    Thank you for your help,

    Lori

Maybe you are looking for