Trying to set up router

I am so aggravated that I have wasted 6 hours of my life on this.  I need some basic information in order to set up my new router.  I have Verizon DSL but don't know where to find the most basic info.  What I need to know is:
What protocol does Verizon use for establishing a connection?  PPoE? Dynamic? or Static?
If PPoE:
What is the account name?
What is the domain name?
What is the DNS address of the primary server?
What is the DNS address of the secondary server? (if there is one)
If Dynamic:
What is the account name?
What is the domain name?
What is the DNS address of the primary server?
What is the DNS address of the secondary server? (if there is one)
If Static:
What is the DNS address of the primary server?
What is the DNS address of the secondary server? (if there is one)
What  is the isp service name--if a service name is required?
What is the isp host name?
What is the isp service name?
If anyone can help me with this, I would GREATLY appreciate it!!  Thank you.

Verizon uses all three, depending on what you've ordered and where you live. Most likely you are using PPPoE connectivity. The ONLY thing you should need to fill into your router is the Username and Password. In most areas that can be anything, but they are typically the Username and Password for the Master account on your DSL line (What you use to log into Verizon mail and change Verizon account settings). IP addresses, DNS servers, and Default Gateways will be obtained automatically when PPPoE connectivity is established. Keep in mind, using PPPoE on your router requires your DSL modem to be bridged!
Your DSL modem if you log into it at http://192.168.1.1/ while directly connected to it will tell you what protocol your DSL line is set to use. It will say PPP/PPPoE as the protocol, or "Routed Bridge" for DHCP.
Also as a tip, if you do not wish to use the DNS servers Verizon uses, choose from any of the IPs below to use instead. These will not redirect you to some Verizon-branded search page if a site is not found:
4.2.2.1
4.2.2.2
4.2.2.3
4.2.2.4
4.2.2.5
4.2.2.6
8.8.4.4
8.8.8.8
If you need to bridge your DSL modem, you can do so by logging into http://192.168.1.1/ while directly connected to the modem and choosing My Network. From there, clicking Network Connections and choosing the DSL network will take you to another settings page. Edit the option located under "VC Settings" to use "Bridge" with "Bridge" mode instead of PPPoE, then save and allow the modem to reboot. From here your router will be able to use PPPoE connectivity.
========
The first to bring me 1Gbps Fiber for $30/m wins!

Similar Messages

  • At wits end trying to set up router with this laptop!

    I am very frustrated trying to setup any router with this laptop.
    I am also trying to run a wired G3 beige (OS 9.1) ethernet connection.
    I have tried both a Airport Extreme and a Netgear WGR614. Both of these routers have worked in the past, but not now!
    Once in a while I can achieve connectivity through the router, but nothing consistent.
    The internet connection works just fine when the router is removed from the network.
    I am well aware that the problem maybe some very simple setting or sequence of operations in configuring the network - but I am very much out of ideas, inspiration, and patience.
    1.Does anybody have any ideas?
    2.Does anybody know of a complete idiots' guide to setting up these routers? (Netgear is NO help)
    3.Is there anything inherently wrong about trying to run a wired G3 with OS 9 and a wireless G4 with OS 10.4 from the same router?

    I would take a close look at possible radio interference, from nearby routers, cordless telephones, microwave ovens, and so on. If 2 routers worked before and now do not, this says something. Have a friend with a wireless laptop try your signal.
    Generally, routers can be default configured and work, although they'll be totally unsecure, which is dangerous. There should be no issues with having an OS9 and OSX computers using the router. Sorry, router settings take a while to learn and are a little different for each brand. Intermittent operation isn't typical of any setting that I know of, WITH THE EXCEPTION that selecting other radio channels sometimes helps.
    As the Rabbit mentions, your computer could have a flaw, so you have to test this by having another wireless user try your signal.
    BTW, I have encountered a consistent problem through the last few OSs of my Airport reception working fine mostly, then suddenly dying with no indication (other than the net stops working). I have to turn Airport off, then on again to get it working again. This is so annoying, I generally use ethernet now.

  • Trying to set a delay in an Applescript for VPN connection

    I need to be able to set some routes upon opening a particular VPN connection so I did some searching and found a really simple Applescript that does the job. Problem is it tries to set the routes before the VPN actually connects so the routes don't go in.
    I added in a 10 second delay which does the trick, but I'm thinking there has to be a way to do this that waits until the VPN actually connects before continuing - so if it takes 5 seconds or 10 or whatever, it waits.
    The other thing I'm doing that I think is bad is I'm sending a route delete command before sending the add command. Why? Because if I don't and for some reason the route is partially in the table, it doesn't give an error and ends up not routing. Again, probably a better way to do this.
    Here is my current script"
    -- Connect Work VPN
    tell application "System Events"
    tell current location of network preferences
    set VPNservice to service "Work" -- name of the VPN service
    if exists VPNservice then connect VPNservice
    end tell
    end tell
    delay 10
    set gateway to "x.x.x.x" -- omitted here for security
    do shell script "route delete 192.168.25.0/24 " & gateway with administrator privileges
    do shell script "route delete 192.168.20.0/24 " & gateway with administrator privileges
    do shell script "route add 192.168.25.0/24 " & gateway with administrator privileges
    do shell script "route add 192.168.20.0/24 " & gateway with administrator privileges
    Any suggestions??
    Thanks.

    you might want to try asking in the Applescript forum under OS X technologies.
    I don't have any VPN connections so can't test anything but applescript dictionary for system events indicates that configuration property of a service has a boolean property "connected". so just run a loop with, say, 1 second delay until this porperty becomes true. presumably it would be something along the lines
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    tell application "System Events"
    tell current location of network preferences
    set VPNservice to service "Work" -- name of the VPN service
    if exists VPNservice then connect VPNservice
    repeat until (connected of current configuration of VPNservice)
    delay 1
    end repeat
    end tell
    end tell
    set gateway to "x.x.x.x" -- omitted here for security
    do shell script "route delete 192.168.25.0/24 " & gateway with administrator privileges
    do shell script "route delete 192.168.20.0/24 " & gateway with administrator privileges
    do shell script "route add 192.168.25.0/24 " & gateway with administrator privileges
    do shell script "route add 192.168.20.0/24 " & gateway with administrator privileges</pre>

  • I currently have a WPN824 v3 Netgear router and I'm trying to set up my Apple TV. I'm able to connect it to my wireless network but my airplay feature is currently not working.

    I currently have a WPN824 v3 Netgear router and I’m trying to set up my Apple TV. I am able to connect it to my wireless network but my airplay feature is currently not working. The icon does not appear on any of my devices. My ipad and ipones all are currently up to date and are all joined to the same network. Is it the way that my router is configured. Please help let me know what I need to change in my router settings or does my router not work with Airplay. Or is there a simple fix.

    you don't mention which products you use
    only ipad2 and up support mirror
    and only iphone4s and up support mirror
    other devices only use airplay for apps which support tvout options

  • On the initial set up for apple tv it just sits there trying to set the date and time . it is a wireless setup and the ipaddress and router address is correct . I can't get by this screen

    On the initial set up for apple tv it just sits there trying to set the date and time . it is a wireless setup and the ipaddress and router address is correct . I can't get by this screen. The setting is on automatic and I have picked a city in my time zone yet it still tries to set a time and date but fails.
    thanks

    Make sure router is up to date. Try ethernet to rule out any wifi issues. Reboot ATV and router.

  • My Ipad and itouch cannot be connected ti wireless router tried changing setting still cannot connect

    my Ipad and itouch cannot be connected ti wireless router tried changing setting still cannot connect

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Trying to set up linksys BEFW11S4 router to AT&T modem

    I just got DSL on Monday and it works when connected directly to my computer.  I tried to set up my router.  Updated the Setup for Internet Connection Type to PPPoE and entered the User Name and Password.  I also updated LAN IP Address to 192.168.2.1.  When I go under Status, the LogIn now says Disable.  I have no idea why it is saying this now.  I didn't update anything else.  Can someone help me?

    It's a comman thing.On the old version routers when the Internet Connection is "PPPoE"...The Login Always shows as disable under status tab.It will only show you enable when the Internet Connection will be on "DHCP".

  • Trying to Set Up Linksys Router

    Hi, I have a Linksys router and used to have an IBM. I know have the PowerBook G4 and I am trying to set up the router in my house. The Linksys installed CD is not supported by Mac, nor their customer support. I need step-by-step instructions on how to set up the router in my home. Thank you.

    I assume you are connecting to the internet through an ISP/DSL service. If so,
    1. Connect your router to the modem, and then your Mac to the router via ethernet. I am not sure what the set up would be for Airport as I do not have Airport on my G5. This should work for an ethernet connection.
    2. Open the Network preference pane Show Built in Ethernet. Then click on TCP/IP and configure for Using DHCP which basically sets your mac to automatically connect to the router/modem/internet.
    3. the click on the Ethernet choice and Configure Automatically.
    Now use your browser and set the address to 192.168.1.1 which is the address of the web page in the router. Check your documentation for the default password, etc. When you get to the basic set up page, you will have to enter your basic Internet Connection Type, your online user name and password, which you should know from your service provider.
    Once those are set you should be able to connect. Be aware though that depending on your service provider, some of these settings made need to be different. I am on Earthlink with a Linksys WRT54G router and these settings work for me.
    Hope this gives you a steer in the right direction. And by the way, when setting up with my PC laptop, had lots of problems. When working only with my Mac, it was almost plug and play to connect via the router/modem!

  • Trying to set up a linksys router but the cd says it works with OSX 10.6 and later. I am currently running the newest version of mountain lion.... what is the matter with this OSX   update needed?

    trying to set up a linksys router but the cd says it works with OSX 10.6 and later. I am currently running the newest version of mountain lion.... what is the matter with this OSX   update needed?

    Your install disk must look like this
    and not like this.
    Those gray disks are machine specific and will only work with model of Mac that they shipped with.

  • My Time Capsule backups disappeared (blank black screens) and in trying to set it up again I now find that when TC is plugged in and on (green light) it cancels out wifi reception from my router. I am only using TC as a backup not for wifi. Help!

    My Time Capsule backups disappeared (blank black screens) and in trying to set it up again I now find that when TC is plugged in and on (green light) it cancels out wifi reception from my router. I am only using TC as a backup not for wifi. Can anybody help?

    Sorry, you have lost me since it appears that you have two completely separate issues here.
    All that I can suggest is you start over and try to set up the Time Capsule again first...and then, once that is done and the Time Capsule is working correctly on the network....then, try to troubleshoot the separate Time Machine issue.
    If you decide that you want to do this, we'll need some basic information:
    Make and model number of your modem?
    You are using OS X Mavericks (10.9.3), correct?

  • Trying to set up ereader for library books but unable to authorise computer.

    I am trying to set up a Kobo Aura ereader to borrow and read library books. I have verified my Adobe ID. Each time I try (I installed, uninstalled and reinstalled Adobe Digital Editions) I am unable to authorise my Windows 7 computer. I get the following error message.
         Activation Server error  code:e_adept_request_expired http://adeactivate.adobe.com/adept/activate 2014-11-08T15:38:27-08:00%20(1415489907000)%2015%before%202014-11-08T16:07:07-08:00%20(14 15491627736)
    I am going crazy setting up this ereader. Please help me!

    Let's try this first.  Press the wireless button on the front of the printer and execute a "Restore Defaults".
    Next, restart the router by pulling its power plug momentarily, then try the WPS procedure again.  If that does not work, contact your ISP to see if the WPS button is functional.
    If it is not, let me know and I can walk you through a much harder, but effective technique.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • HT1218 I'm trying to set up a new iPad..it asks for my WiFi network.. I find the network..then it asks for information that I have no idea about: IP address, Subnet Mask, Routet, DNS, Search Domains, Client ID..also the headings are: DHCP,BootP, Static..c

    I am trying to set up my new iPad. it asks for a WiFi connection.. I have one..then the next page asks for these things:DHCP,BootP,Ststic then IP address, Subnet Mask, Router, DNS, Search Domain, Client ID  then HTTP Proxy  I have no idea what any of this means...can someone please help me???

    Thank you sooo much. I was so disappointed...I couldn't wait to get started with the new iPad..then ran into the problem. So simple. You made my day. Thank you for your expertise!!

  • Having trouble setting up router with verizon modem

    im trying to set up my linksys router wrt54gs with my verizon dsl modemr.  im having a hard time.

    Try these steps :
    Access the setup page of the router by launching an
    Browser and type on the address bar, 192.168.1.1 and press enter. When
    it prompts for the username and password, leave the username field
    empty and provide password as "admin" (Without quotes)
    click on ok.
    On the main setup page the ""Internet Connection Type"" should be
    on ""Obtain IP Automatically - DHCP “. Click on the Save Settings
    button.
    Now click on the sub tab ""MAC address clone"".
    - Click on enable
    Click Clone & click save settings
    Check WAN Ip on Status page of router ....
    If getting Valid Ip .... try going online
    If you are getting Ip - 192.168.1.X ...change the LAN Ip to 192.168.2.1 ....Power cycle for 3-4 minutes ...
    Try going online
    If still not working ...use Internet Connection type as PPPOE .... Use Username & Password provided by Service Provider ....
    Click save settings....
    Look for WAN IP address again under status page ....
    Hope it works for you....

  • Frustrated trying to set up a wireless network with Bellsouth Fastaccess's Westell Wirespeed modem.

    Today, about 6 hours ago in fact, I came home with a Linksys WRT54G wireless router. It took me a while to get a grasp on how to connect it. I had no network port on the back of my PC, as far as I knew, and I had been connecting my Westell Wirespeed modem to my PC via USB for years. In the end I ended up spending an hour digging up the old Ethernet cable that came with the modem, and finally managed to do everything the Router setup program asked of me.
    One hour after restarting multiple times, experimenting with different orders of plugging in things, and countless resettings of the Router AND the modem, it finally set up the network. It ran for an hour.
    One of my cats ran behind my computer, jarring one of the cords and causing the PC to turn off. It happens twice or thrice a year when they get rowdy. When I jiggle all the plugs back into place and turn on my computer, the connection was dead! Gone! And there was nothing in my Program Files that said "Start Linksys Network" or anything convenient like that. I suppose that would be too easy, right? And my internet didn't work either! So with no other choice, I opened up the installation program again - there was no trace of any sort of folder or application on my PC linked to the router. In fact, as far as I can see, I still have no way to get into ANY sort of router-related application aside from the install CD.
    So I stuck that back in there.
    I've spent the last three hours grueling over this thing. I connect it all before turning the PC on. Nothing. I disconnect everything and plug it all back in meticulously step by step according to the program. Nothing. The install program always gets through the PC checking, and lets me fill in the PPOE (or whatever) information. As it tries to update the router configuration, though, it tells me one of two things.
    1 ) If I have just done a reset of the router, it gets to 99% in the router configuration progress bar before telling me the 'router configuration failed'.
    2 ) If I exit the setup program and reopen it, I get a generic "So and so has caused an error in 4746545x48345675 (or some other random number)," and asks me to either Cancel or Debug.
    My hands are sore and I'm stressed to the limits. I bought a laptop a week ago for the sole purpose of alleviating the battles my kids have over the only source of internet in the house, but it's just been sitting there. I'm really at the end of my wits. Between the errors that don't tell you what went wrong and the perfectly-connected router that keeps pretending it's not connected, I'm just about ready to return the laptop.

    This happened to me when I was setting up the wireless router for a friend.  The issue is with the Westall modem.  You need to go in and setup the "bridge" option on the westell modem.  The link below gives directions or you can call bellsouth dsl support (this is how I learned about it).
    http://help.bellsouth.net/bellsouth/asp/contentview.asp?isbrowse=true&sprt_cid=3f993409%2Ddff7%2D422...
    Good luck
    Solution:
    Method 1 - Hard Reset
    Restore the modem to default settings by pressing the Reset button on the back of the modem and holding it for 3 seconds. (Bridged mode is the default setting for the Westell).
    After the modem regains sync, it is in Bridged mode. Do not attempt to surf into the modem as surfing into the modem will enable the Easy Login page and convert the modem from bridged mode to a PPP mode.
    Method 2 – Bridged Mode
    Access the Westell interface using http://192.168.1.254 or http://launchmodem.
    Click on the Broadband DSL Line button. 
    Click on the Protocols button 
    Select the radio button to the left of Option 2 (Bridge)
    Click the save button. Once the modem has restarted it is in bridge mode. 
    ALL STEPS COMPLETE

  • RV110W - trying to set up 2 VLANS - are there docs / help for this?

    I am trying to set up an RV110W router with 2 VLANs - 1 for guests to the office to just have internet access via wireless and another for employees to be able to access the LAN and internet wirelessly. I have not done anything with VLANs before, so please bear with me.
    I thought this would be simple, but banging my head against the wall with all the terms in the docs:
    http://www.cisco.com/en/US/docs/routers/csbr/rv110w/administration/guide/rv110w_admin.pdf
    port 1 is connected to a wired LAN / unmanaged switch with office PCs. So these machines / nothing on this subnet tag the packets before they get to the router.  This subnet is using 10.10.1.0/24
    Port 2 is connected to an Engenius EAP 300, a wireless access point that can broadcast SSIDs and tie each SSID to a different VLAN.
    SSID1 is called Private and is set to be VLAN 1. There's encryption on this SSID - only office staff would be able to log on.
    SSID2 is called public and is set to be VLAN 10.  There's no encryption on this SSID.
    I know - the router also does this, but where the router is vs. where the wireless is needed, we need to have the Engenius at that remote location.
    I have the RV110W set to give out 10.10.1.0/24 IPs when you connect to the SSID1 / VLAN1
    And it gives out 10.10.10.0/24 IPs when you connect to the public SSID / VLAN10.
    Both get on the internet fine.  The only issue is how to set the VLAN membership for each port / and any other settings so that the wireless devices on VLAN 1 can get to the LAN devices on Port 1.  (and the public / vlan 10 devices on the wireless network to NOT get to the devices on port 1, but i think that's working.
    I played with tagged / untagged / excluded, for the port membership, but either the wireless VLAN 1 devices get blocked from even the web (when port 2 is set to untagged, since they ARE tagged VLAN1) or they can't get to port 1 when set to tagged, since the port 1 devices are all untagged and the reply packets get blocked?
    the doc for this unit talks about inter-vlan routing but doesn't explain what that is.  THe wireless isolation should be turned on for vlan 10, right? We don't want guests to be able to access other guest's machines?
    I saw on page 71 on how to set up the guest network, but that's using the wireless built into the box, not a wireless access point.
    Overall, what I want is:
    VLAN 1: port 2 (with tagged VLAN1 packets) and port 1 (with untagged packets) can pass data between each other and access the internet
    VLAN10: port 2 with tagged VLAN10 packets can only get to the internet.
    Is that doable?
    How?

    thanks.  Still not working
    For the vlan membership page
    when set like this:
               port1         port 2
    vlan1     untagged    untagged
    vlan10  excluded     tagged
    connecting to the vlan1 wireless SSID on port 2, I can't even get an IP address from the router (the dhcp request can't even come through port 2 because it's saying vlan1 packets have to be untagged?
    connecting to the vlan 10 wireless SSID on port 2 gets a DHCP address and can only get to the web, so that's good.
    If I change the membership to:
                      port1 port 2
    vlan1 untagged  tagged
    vlan10 excluded tagged
    connecting to both SSIDs on port 2 will get you a dhcp address, and vlan1 devices can get into port 1, but trying to admin the wireless access device on port 2 or even pinging it, now fails -  'cause the router gatekeeper says if you want to come through port 2, your packets have to be tagged? and the packets from port 1 to port 2 are untagged?
    If I change the membership to:
                port1 port 2
    vlan1   tagged tagged
    vlan10 excluded tagged
    connecting to both SSIDs on port 2 will get you a dhcp address, but replies from the wired PC on port 1 / vlan1  vlan1 can't get back out of port 1 'cause the router gatekeeper says if you want to leave  through port 1, your packets have to be tagged? and the ping reply is coming form a device with untagged packets?  although the devices on vlan1 / port 1 CAN get on the web with their untagged packets.
    the wireless device says it supports 802.1q
    http://www.engeniustech.com/resources/EAP300_DataSheet_v2.1.pdf
    when they say port 2 / vlan 1 tagged, is it saying packets coming in FROM devices on that port have to be tagged? Or packets going TO devices on that port have to be tagged?  or both directions?
    Any advice?

Maybe you are looking for

  • How to pass date parameter from one page to other in BSP application

    Hello gurus, In my BSP application i have taken an input field and made its type "date" and its value also of type date and have set showhelp . Now once a particular date is given as an input i want to pass its value to next page. And in next page i

  • HT202157 Apple TV No Longer Works after the most recent update (2.1.13)

    Why can I no longer access the movies and tv shows I've already purchased in iTunes after the update?  It was not until the most recent update as on 2/1/13 that I started having this issue.  Please correct this so I can use what I paid for.  Thanks

  • Download Box Pops Up When Viewing Websites With Facebook Like Buttons

    Whenever I visit websites that have the option to click the "like" button from facebook (cnn, tmz, etc.), the download box on my computer pops up and says "You have chosen to open like.php from www.facebook.com in Text Edit" or "You have chosen to op

  • 2 BEx Query Limitation

    Hi, Currently I met two limitations in BEx query designer: 1. The query can only contain 50 characteristics, but the customer requires a report have 138 coulumns, is there any advice how can i fulfill this requirement? 2. I found that a lot of people

  • Sender Cost Center may not be the same as Receiver Cost Center

    Hello every body I am trying to create a report that shows the hours that an employee has spend on an activity in a project. Key Figure: Hours Characteristics: Sender Cost Center (Employees Cost Center) Receiver Cost Center Activity code What happens