Need help in L2tp Lac router loadbalance to 2 LNS routers with same domain

hi all ,
ive implemented the LAC LNS with l2tp protocol ,
i fololowed the articale
https://supportforums.cisco.com/docs/DOC-6102
https://supportforums.cisco.com/docs/DOC-6101
and its 100 % fine ,
but i have a question now
what about if i have two LNS routers not 1 and those are with same domain ,
how will LAC load balance pppoe sessions to the LNS routers ?
again, i have 2 LNS
regards

Since the AEBS has only a single ethernet LAN port, the correct way to connect more that one cabled device to it is to use a basic ethernet switch. Using a router to do this job as you have done is (a) unnecessary, (b) more costly, and (c) directly causing the very problem you are trying to solve.
Get rid of the Linksys router, replace it with a $30 4-port ethernet switch, and your problems will go away. Since the AEBS will be the only router on your network (as it should be) you only need to set up port mapping on the AEBS as described in the article How do I use port mapping.

Similar Messages

  • My email address is ***********, Apple ID I forgot my password, why not send links that Reset Pass on my email, I need help than why? Contact Us By Email me back with ***********, Thanks

    My email address is ***********, Apple ID I forgot my password, why not send links that Reset Pass on my email, I need help than why? Contact Us By Email me back with ***********, Thanks
    <E-mails Edited by Host>

    You are not addressing Apple here. This is a user-supported technical support forum. If you have tried to restore your Apple ID using iForgot, then try contacting iTunes Customer Service.

  • I need help picking a wired router

    im tired of bringing my computers modem upstairs everytime i wanna go on xbox live because then when my sis or mom needs to use the internet i have to bring it back downstairs so i wanna have a really good wired router i can keep upstairs in my room so i need help picking one

    The reason gaming and wireless don't work is because wireless does not transfer large packets of information which is what gaming uses. The best thing to do if you want wireless is to get a gaming router they will send larger packets of information and they also have dual ban gaming routers which will allow you to set up to where you can connect on one signal and your mom or sister on another it will make it much better for all of you in the long run.
    Brandon
    Best Buy Associate | Geek Squad Agent
    Forum Guidelines | Terms & Conditions | Community Guidelines | Blogging Guidelines
    *Remember to mark your questions solved and click the star under the user's name to show your thanks!

  • Need help to draw a graph from the output I get with my program please

    Hi all,
    I please need help with this program, I need to display the amount of money over the years (which the user has to enter via the textfields supplied)
    on a graph, I'm not sure what to do further with my program, but I have created a test with a System.out.println() method just to see if I get the correct output and it looks fine.
    My question is, how do I get the input that was entered by the user (the initial deposit amount as well as the number of years) and using these to draw up the graph? (I used a button for the user to click after he/she has entered both the deposit and year values to draw the graph but I don't know how to get this to work?)
    Please help me.
    The output that I got looked liked this: (just for a test!) - basically this kind of output must be shown on the graph...
    The initial deposit made was: 200.0
    After year: 1        Amount is:  210.00
    After year: 2        Amount is:  220.50
    After year: 3        Amount is:  231.53
    After year: 4        Amount is:  243.10
    After year: 5        Amount is:  255.26
    After year: 6        Amount is:  268.02
    After year: 7        Amount is:  281.42
    After year: 8        Amount is:  295.49
    After year: 9        Amount is:  310.27
    After year: 10        Amount is:  325.78
    After year: 11        Amount is:  342.07
    After year: 12        Amount is:  359.17
    After year: 13        Amount is:  377.13
    After year: 14        Amount is:  395.99
    After year: 15        Amount is:  415.79
    After year: 16        Amount is:  436.57
    After year: 17        Amount is:  458.40And here is my code that Iv'e done so far:
    import javax.swing.*;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.RenderingHints;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.lang.Math;
    import java.text.DecimalFormat;
    public class CompoundInterestProgram extends JFrame implements ActionListener {
        JLabel amountLabel = new JLabel("Please enter the initial deposit amount:");
        JTextField amountText = new JTextField(5);
        JLabel yearsLabel = new JLabel("Please enter the numbers of years:");
        JTextField yearstext = new JTextField(5);
        JButton drawButton = new JButton("Draw Graph");
        public CompoundInterestProgram() {
            super("Compound Interest Program");
            setSize(500, 500);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            amountText.addActionListener(this);
            yearstext.addActionListener(this);
            JPanel panel = new JPanel();
            panel.setBackground(Color.white);
            panel.add(amountLabel);
            amountLabel.setToolTipText("Range of deposit must be 20 - 200!");
            panel.add(amountText);
            panel.add(yearsLabel);
            yearsLabel.setToolTipText("Range of years must be 1 - 25!");
            panel.add(yearstext);
            panel.add(drawButton);
            add(panel);
            setVisible(true);
            public static void main(String[] args) {
                 DecimalFormat dec2 = new DecimalFormat( "0.00" );
                CompoundInterestProgram cip1 = new CompoundInterestProgram();
                JFrame f = new JFrame();
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.getContentPane().add(new GraphPanel());
                f.setSize(500, 500);
                f.setLocation(200,200);
                f.setVisible(true);
                Account a = new Account(200);
                System.out.println("The initial deposit made was: " + a.getBalance() + "\n");
                for (int year = 1; year <= 17; year++) {
                      System.out.println("After year: " + year + "   \t" + "Amount is:  " + dec2.format(a.getBalance() + a.calcInterest(year)));
              @Override
              public void actionPerformed(ActionEvent arg0) {
                   // TODO Auto-generated method stub
    class Account {
        double balance = 0;
        double interest = 0.05;
        public Account() {
             balance = 0;
             interest = 0.05;
        public Account(int deposit) {
             balance = deposit;
             interest = 0.05;
        public double calcInterest(int year) {
               return  balance * Math.pow((1 + interest), year) - balance;
        public double getBalance() {
              return balance;
    class GraphPanel extends JPanel {
        public GraphPanel() {
        public void paintComponent(Graphics g) {
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setColor(Color.red);
    }Your help would be much appreciated.
    Thanks in advance.

    watertownjordan wrote:
    http://www.jgraph.com/jgraph.html
    The above is also good.Sorry but you need to look a bit more closely at URLs that you cite. What the OP wants is a chart (as in X against Y) not a graph (as in links and nodes) . 'jgraph' deals with links and nodes.
    The best free charting library that I know of is JFreeChart from www.jfree.org.

  • Need help setting up my router

    hi i am new to this forum and i need some help
    i just recently bought a linksys  model: WRT54G ROUTER and a NETWORK USB ADAPTER and it wont connect to the internet using a wired connection and a wireless connection. i have COMCAST internet and i tryed calling them to see if they could help me but they couldnt. i also went to BEST BUY  and asked the geek squad people and they said the lnksys setup disk doesnt work 9/10 times so can any one please help me so i dont have to spend 100+ dollars to get my internet setup through my router.
    also  my modem is directly connected to my comouter by a cat-5 cable(ethernet cable)
    thanks in advance

    Make sure you can access the Internet while directly connected to the modem then...
    Check this out:
    CLICK THIS
    "The war between heaven and hell depends on the choices we make, and those choices require sacrifice. That's the test"

  • Need help on setting up router

    Hi, I have a WRT54G wireless G router. I have a problem connecting to the internet through the router. If I connect an internet cable directly from my modem to my laptop, the internet works fine. If I connect the modem to the router and the router to my laptop, the message on my computer says 'limited or no connectivity'. I have set to detect IP and DNS automatically on my laptop.
    Even when I use the linksys EasyLink, it says it does not support my router. In the router setup page, the setting is set to 'Automatic DHCP'. Why is the problem? Can anyone help me? Thanks!

    You just need to set one up and everyone uses that password to connect to your network.
    Read this article here
    Setting-Up WEP, WPA or WPA2 Wireless Security on a Linksys Wireless Router
    "Sometimes your knight in shining armor is just a retard in tin foil.."-ARCHANGEL_06

  • Need help reconnecting my BEFW11S4 router..please! :)

    I was wondering if anyone could help me with the problem that I'm having right now.
    I've had a Linksys BEFW11S4 Wireless Router for more than a year now and so far, nothing's been wrong with it. Just last night, my DSL wouldn't connect so I called my internet provider (Frontier) and we got it to work but only after I disconnected the router. The guy on the phone said that the router was part of the problem and that I would need to call Linksys and have them guide me through setting it back up. He also said I'd need to change some of the settings. When I called, the Linksys lady said that I would need to pay money for them to help me, but I could use their free internet resources. So I tried reconnecting the router but it didn't work. So I'm stumped. I haven't a clue what to do. Could someone please help? Thank you so much.
    Oh I have Windows XP in case you need to know.

    1)connect the computer to the router's port 1
    2)access the router ui using http://192.168.1.1 . the default login password is "admin"..
    3)on the set up page , select the internet connection type as "PPPoE" ..
    4)Enter the username and password provided by Frontier...the username should be like [email protected]
    5)save the settings
    6)connect the modem to the router's internet port
    7)do a power cycle
    8)on the router web ui , go to the "status" tab and check whether the login status is connected ..
    9)if yes, there should be a valid internet ip address and you should be online
    10)if not, then you need to bridge the modem ..

  • Need Help in finding out Router, Switch, firewall n IDS 4 Datacentre

    Hii All,
    Greetings!!!
    Iam workin on project for Datacenter. I need ur help in finding me out the exact Router, Switch, Firewall & IDS series based on my attached complete technical specification.
    pls find attched tech info for router, switch, firewall & IDS. Ur prompt respnse will be appreciated..
    Thanku in advance 4 ur kind cooperation & help.
    Looking forward 4 ur prompt response.
    Brgds
    Arif....

    The write-up more sounds like it's an 7206VXR router, a 6500E with Sup720.
    FW/ASA/PIX is an ASA 5510
    Please don't forget to rate useful posts.  Thanks.

  • Need help regarding Cisco 1841 Router

    hello everyone , i am need of help regarding configuring of   FE 0/1 port. our company have a cisco 1841 router. The serial 0/0/0 is connected with VSAT for internet. The FE 0/0 is connected to switch(LAN) through which net connectivity is provided to all users. Recently a new VSAT has been installed at our site,with different IP series. So every time we want to switch between the two net connectivity we need to change the entire IP configuration of all users, which in turn prohibits the users from accessing the printers,data servers etc which are been set to our existing IP series. So, my idea was to configure the FE 0/1, so that just by changing the DNS will help us providing internet along with all other devices without changing the entire IP series. The new VSAT modem has a lan cable which can be connected to FE 0/1. Can any one help out in solving the problem. Our existing IP series is 192.168.3.1..... and the new VSAT series is 10.205.74.1......

    Bao
    Do I understand correctly that you will have 20 remote users who will telnet to the 2511 and from the 2511 will use reverse telnet to access the console of router1, router2, router3, etc which have their console ports connected to async ports of the 2511? If that understanding is correct then the firewall only needs to open TCP port 23 for telnet. The other ports (2001, 2002, etc) are between the 2511 and router1, router2, etc and will not be seen by the firewall. If my understanding is not correct then please clarify.
    I do not believe that you will find an image for the 2500 that supports SSH.
    HTH
    Rick

  • I need Help Setting Up Wireless Router WRT54G on NTL

    Hi, I've managed to setup a few home wireless networks in my time but I'm having problems with this. My gf's ISP is NTL and it is connected via a cable modem (rather than the set top). I registered my laptop using the installation software and the internet connection is working fine. I attempted to setup the router and I could connect to it, however I could not connect to the internet through the router. Previously with other routers I found an option where you could input the user/pass so that the router was automatically connected to the service, but I could not find this option. Does anyone who has setup this wireless router with an NTL setup / or anyone at all have any idea how I go about setting it all up?
    Thanks in advance

    I also found this thread which helps by showing when to clone the MAC address.
    Using run cmd from XP's start menu and typing ipconfig /all will show the MAC address of your machine's NIC card, if you need it.  
    http://linksys.custhelp.com/cgi-bin/linksys.cfg/php/enduser/std_adp.php?p_faqid=1040&p_created=10869...

  • Need Help setting up wireless router

    Hi, ive spent the week on the phone trying to reach all the various technical support people to help me, and getting no where, i wait forever and then get dropped.
    I just got time warner cable in NYC (queens) and the modem and internet surfing works fine if I use a USB cable from the modem to my computer, the problem is the ethernet doesnt work, and I dont have drivers for ethernet, but im more interested in setting up wireless from the modem, to the wireless router to my computer with the wireless card.
    I accidently installed some kind of microsoft tcp/ip thingy when surfing around my computer trying to fix this and now I cant use the wireless router and card.
    I dont want to spend hours on the phone in a tech support message maze, so please help me thru PM.
    Mark
    please PM me
    (Edited for guideline compliance. Thanks!)
    Message Edited by JOHNDOE_06 on 07-15-2007 12:16 PM

    Hi Mark, first off let me know are you able to go online directly with the modem, if computer is connected directly to the ethernet port of modem? if not, i think ethernet port of the modem is not working or may be it's defective or drivers for ethernet adapter is not installed , as you've mentioned you can able to go online with the USB cable, once computer is connnected directly to the USB port of modem...unless and untill ethernet port on the modem is not working you won't be able to configure the wireless router... router doesn't have USB port on it... anyways connect modem to the ethernet port of the  router >> computer (wireless), reset the router back to factory default settings by pressing reset button on the back panel of the router... release the reset button after 30 seconds, power cycle the network by unplugging power cable of the modem and router... wait for couple of minutes and power up the modem first and wait for few seconds once modem is rebooted, after that power up the router, check the light status power, WLAN and internet light on the router should be on... try connecting to "linksys" wireless n/w from wireless pc...check whether it works or not and let me know...

  • Need help choosing a new router (business use)

    Here is what I have: Windows XP Pro Workstation (Wired) Server running Windows 2000 Server (Wired) Server running Linux (Wired) Windows XP Pro Laptop (Wireless) Playstation 3 (Wireless) I plan on creating a VPN connection to my network using Microsoft's VPN (Routing and Remote Access component to be specific); however, I currently have a 3 year-old Linksys Wireless-G Router w/Speedbooster (WRT54GS) that does not allow incoming VPN Connections. I have confirmed all the settings are correct on my end and the router will not cooperate. I would like to get a new router that will allow incoming VPN Connections and provide wireless to my wireless equipment. I DO NOT want to use 3rd party VPN software. Your recommendations are much appreciated.

    It is unclear to me what kind of VPN connection you want to make exactly. Do you want to have a VPN connection from a computer in the internet using Microsoft's VPN client (i.e. PPTP or L2TP) to a server inside your LAN which is running the VPN server? What protocol do you want to use?
    This should work through the WRT you have already. What hardware version do you have? Check the label underneath the router. Check for firmware upgrades for your router on the linksys technical support pages.
    What port forwardings did you configure for the VPN tunnel?
    Some people reported that the pass-through settings in the router were reversed: not setting the pass-through option actually allow traffic.
    I don't think that a new router will necessarily solve your problems.
    If you still want to upgrade, I would not necessarily look for a full replacement of the WRT. The WRTs (older and newer) bundle many functions inside a single box which make it versatile to use but on the other hand also has it downsides when one function influences some other for instance.
    You can easily turn your old WRT into an access point for your LAN. If you want to buy a new router I would rather look into a wired router maybe even considering one with a VPN server built-in. Then you can establish the tunnel to the VPN router instead of a server inside your LAN. But you have to check the VPN routers carefully if they really support the client you want to use for the connection. Some are limited.

  • I need help choosing a wireless router (Networking Noob)

    Okay, I am very new to wireless networking. 
    I basically want to replace my current wired DSL modem with a wireless modem/router that I can still wire my main PC up to via Ethernet, and route a wireless connection to a laptop, and possibly some other devices (possibly a Nintendo DS, Xbox 360, TV, and other similar devices).
    I have been trying to find out if the E-Series from Cisco actually act as a modem as well as a router but can't seem to find the information.
    I do wish to have recent technology, but don't want to pay a fortune, so if there is a list of Linksys modem router combos you can give me then I can go research them further.
    If there is anything else you think I might need to consider, I'm all ears
    Thanks so much.  Hopefully I won't be a newbie for much longer on this subject.

    The E series routers are ethernet routers. They don't have modems integrated.
    The Linksys devices with integrated modem are the WAG models, e.g. the WAG320N.
    However, I would rather recommend a ethernet router and a standalone DSL modem. DSL technologies evolves pretty quickly and it's possible that the modem you buy today won't handle the internet speeds in two years.
    In addition, except for the latest WAG models (which can be configured as ethernet router on the first LAN port, i.e. "loosing" one of the four ethernet port) the DSL routers are generally only for use with DSL. If you decide anytime soon to switch to cable or satellite or FTTH you will need a new modem again.
    On the other hand, an ethernet router may be good for longer depending on your requirement. It works with any kind of access technology DSL, cable, etc. as long as you have a modem.
    Thus, my general advice is to get a standalone cheap modem and a separate ethernet router. Ask you ISP for the modem. Often, ISPs offer a simple modem for free or you get one "rented" for free. This way you have the guarantee that the modem works fine with their network.
    You also have a much greater variety of wireless routers to choose from.

  • Need help replacing a Netgear router with my old used wrt54g from another house.

    I had a WRT54G at my old house that was working great. Now the renters moved out and I got the router back. I have been having some issues with the netgear router Im using now so I would like to replace it with the Linksys. How do I do this? Do I need to hit the reset button? What do I set the settings at and how do I set up security so others can't access my network.

    Whoaw! Take it easy Ragnar....
    It is easy to setup the router with your existing network. I'd like to know your ISP. In a way, you can have the router set up manually according to your ISP settings, whether it is cable or DSL.
    For setting up the wireless to be secured, you can check this link.
    for heads up! <<<call_me_jam_>>>

  • I need help to setup my router E1000

    I can setup my router with the cd Can you help Thank you

    You can start here.
    Setting-Up a Router with DSL Internet Service
    Setting-Up a Router with Cable Internet Service
    Dont forget to set up your routers security afterwards.
    The Search Function is your friend.... and Google too.
    How to Secure your Network
    How to Upgrade Routers Firmware
    Setting-Up a Router with DSL Internet Service
    Setting-Up a Router with Cable Internet Service
    How to Hard Reset or 30/30/30 your Router

Maybe you are looking for

  • Iphone 4 is not recognized by computer anymore. I've tried everything and it still wont connect. What can I do?

    My phone stopped syncing a couple of months ago, but ive used the computer to charge it. Last time i used the computer to charge it was 2 weeks ago. This past week i tried to use the computer to sync it with the new IOS5, but now the computer doesnt

  • Problem in Query Transportation

    Dear All, We are transporting the query from 3.0B to BI 7. The BI 7 analyser is working fine with all the variables but in the fiscal year period it is giving the error. When we remove it from the query designer BI 7 and including the optional variab

  • HT4972 i am not able to activate my iphone after update ios5

    plz help me to activate my iphone coz its not responding after updating IOS5

  • Lightroom 5.2 and ATI Eyefinity

    Just purchased Lightroom 5.2 as a part of the Photoshop Photography Program. However, when I install, and after it converts my old Lightroom 4 catalog, I cannot see previews or main window images on my main central screen. Strangely, I can see previe

  • Looking for a Houston area contractor.

    All, EM is looking for a local LabVIEW contractor to help us with additional projects. CLD or CLAD preferrered. Oilfeld experience, RT and FPGA is a plus. Contact: Kenneth Miller Erdos Miller 713-562-4315 [email protected] Local applicants only pleas