On OLE ADSL  setup........what to do??plz help...........

sir
how to set gate way on pppoe connection for ADSl modem???
plz help....
Regards
Edited by: sayantan chakraborty on Jul 31, 2009 1:56 AM

i have dynamic ip address.so what to do?can you say like
step 1 action
step 2 action
all.
please help..............
output of
ipconfig /all
Windows IP Configuration
   Host Name . . . . . . . . . . . . : FAXCOOLWAREZ037
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
PPP adapter Broadband Connection:
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Broadband Connection
   Physical Address. . . . . . . . . :
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 117.194.***.***(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.***.***
   Default Gateway . . . . . . . . . : 0.0.0.0
   DNS Servers . . . . . . . . . . . : 218.248.***.***
                                       218.248.***.***
   NetBIOS over Tcpip. . . . . . . . : Disabled
Ethernet adapter Local Area Connection:
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Broadcom NetLink (TM) Gigabit Ethernet
   Physical Address. . . . . . . . . : 00-1D-72-39-**-**
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   Autoconfiguration IPv4 Address. . : 169.254.***.***(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.***.***.***
   Default Gateway . . . . . . . . . :
   NetBIOS over Tcpip. . . . . . . . : Enabled
Wireless LAN adapter Wireless Network Connection:
   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Intel(R) PRO/Wireless 3945ABG Network Connection
   Physical Address. . . . . . . . . : 00-1F-3C-**-**-**
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : YesEdited by: sayantan chakraborty on Jul 30, 2009 12:04 PM
Edited by: sayantan chakraborty on Jul 30, 2009 12:06 PM

Similar Messages

  • When i try to buy 50k Coins in Jet Pack Joyride (3.99$) it says "Error al comprar" (Im from Costa Rica but my account is from USA) IDK what to do plz help me

    When i try to buy 50k Coins in Jet Pack Joyride (3.99$) it says "Error al comprar" (Im from Costa Rica but my account is from USA) IDK what to do plz help me.

    Hello Dovahkiin03,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iTunes Store: About In-App Purchases
    http://support.apple.com/kb/ht4009
    Best of luck,
    Mario

  • HT1937 Hi Dear, My Wifi and Bluetooth is not on what can do plz help me!

    Hi i have iPhone 4s since 4 month my Wi-Fi and bluetooth is not connceting or on what do i do plz help i am very upset

    Seems kind of obvious, turn them on.

  • I forgot my personal questions on my acount and dont know what to do plz help

    i forgot my personal questions in my acount and i dont know what to do plz help

    Forgotten Security Questions / Answers...
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact
    More Info >  Apple ID: All about Apple ID security questions
    Note:
    You can only set up and/or change a Rescue Email Before you forget the questions/answers.

  • HT4623 i have iphone 3gs but there is no option like update software ? what is this plz help me

    i have iphone 3gs But its verson is old 4.1 i want to update it ,,, How can i update plz help me

    You use iTunes. Read here:
    http://support.apple.com/kb/HT4623

  • Logic error(I cant make it do what i want) plz help

    im writing a program for my lab at school and i cant figure out how to make it work. i thought i had figured it out, its close but not all the way there. im supposed to write a program in which 2 dice are rolled and the sum is added up. the dice should continue to be rolled until i get all possible sums ( 2 to 12) and it should display how many tries it took. this whole process should be repeated as many times as the user wants to play. it works fine the 1st tiime but after that it keeps printing out 0. anywhere heres how i have it written.public void rollForSum(int trials) {
            sum = value1 + value2;
            counter = 2;
            counter2 = 0;
            counter3 = 1;
            while (counter3 <= trials) {
                while (counter <= 12) {
                    while (sum != counter){
                        value1 = 1 + generator.nextInt(6);
                        value2 = 1 + generator.nextInt(6);
                        sum = value1 + value2;
                        counter2++;
                counter++;
            System.out.println("It took " + counter2 + " times");
            counter2 = 0;
            counter3++;
    }

    Well I can see you've had a go, so good on you, but there are several problems.
    You seem to be doing your counter incrementing in the wrong places, and in any case, you'd be better to use "for" loops for the fixed loops because they make the functionality clearer - something like this:public void rollForSum(int trials) {
            int tries = 0;
            for (int trial = 0 ;  trial < trials ; trial++) {
                 for (int diceTot = 2 ; diceTot <= 12 ; diceTot++) {
                     do {
                        value1 = 1 + generator.nextInt(6);
                        value2 = 1 + generator.nextInt(6);
                         sum = value1 + value2;
                         tries++;
                     } while (sum != diceTot);
                 System.out.println("It took " + tries + " times");
    }However, I don't think this actually does what you want, because you are counting the number of tries to get a 2, then the number of tries to get a 3 and then the number of tries to get a 4, and so on up to 12. I suspect what you really should be doing is count the number of tries to get at least one of each number. To achieve that, you need to hold a flag saying whether you have found each number separately, and a counter of the numbers found so far.
    I would do this by holding an array of booleans and a counter then you only need two loops, one "for" loop for trials, and an inner "while" loop (like you used) like this:int tries = 0;
    for (int trial = 0 ;  trial < trials ; trial++) {
      boolean[] sums = new boolean[13];
      int sumsFound = 0;
      while (sumsFound < 11) {
        value1 = 1 + generator.nextInt(6);
        value2 = 1 + generator.nextInt(6);
        sum = value1 + value2;
        tries++;
        if (!sums[sum]) {
          sums[sum] = true;
          sumsFound++;
    }Hope this helps!
    Regards,
    Tim

  • I have a 4th gen ipod touch and i reset to factory settings but it is frozen with the apple logo with a gray lined circle. I've tried running out battery and when i connected to itunes, it flashes gray and freezes again. I don't know what to do plz help.

    it wont turn on after reset to factory settings

    there is a program called recboot. you can download it for free in two parts. one part takes your device out of recovery mode and the other puts it into recovery mode. ive used it before but it doesnt always work and you have to be patient. try it and tell me what happens

  • My daughter has forgotton her password to get onto her i pad and i dont know what to do plz help, my daughter has forgotton her password to get onto her i pad and i dont know what to do plz help

    hi my daughter has forgotton her password to gettin into her i pad and im not sure of what to do please help

    She'll will have to restore the ipad via itunes on a computer. If its the same computer that the ipad was originally synced with then she should be able to reset the password during this process. If unable to do this or restore then follow these instructions:
    http://support.apple.com/kb/HT4097
    But, all content on ipad will be deleted during restrore.

  • I Idk what to do plz help

    I Am trying to my iemi Ik where to find it but when it put it into like the ATNT webcite or something it says that it is invalid

    ok, you all are just being mean. I am just a young girl trying to find out what is wrong with my phone and I am answering all the questions you ask I am not 100% sure what to put. I am new to Apple. I got my moms old iPhone and when she tried to get survice on it, the AT&T website said that the Imei was invalid. I am just trying to put a prepaid plan, or a pay as you go plan.
                                       does that help any

  • What happens? plz help?

    Oh Hi,
    I am gonna get an ipod touch and i need to know what will happen if i dont have broadband?

    what? a wireless router? A wireless router is technically a wire free internet, you don't need wires connected to your computer or anything but that it needs a wireless card to receive the signal. As for the touch it does have the wireless card built in so no need to worry about that. I'm sure you are using your internet now, you just need to hook up the wireless router to the cable modem and just follow the instructions there. If you really don't know what wireless router is, the best bet is to go to the store and ask them about it.

  • TS1363 i have and ipod touch  the with out the camera how do i get my facebook back  when i try it said i need iso4 donot know what that is plz help

    hi can you help me get my facebook back on my ipod touch. i have ipod touch with out the camera.

    It sounds like you may have a 2nd generation iPod. If so, it can not be upgraded beyond 4.2.1. The Apps you are trying to load are compatible with a higher version of the iOS.

  • I lost my iphone and i couldnt track it because the one who stole it shut it down,, what to do plz help

    i lost my iphone and i couldnt track it because the one who stole it shut it

    you've lost you're phone, you can report it stolen but i doubt they will find the person, or if you had insurance use that. there is like a 1% chance you will find it. &like someone else said, the theif cant use it if it had a passcode lock or without your apple id and password

  • I forget my apple id password my phone locked after reset what i do plz help

    i have i phone 5s i forget my apple id passwor my phone locked after reset
    (S/N:DN*******FFW)
    (IMEI #**********)
    <Edited by Host>

    https://iforgot.apple.com

  • What's wrong? Plz Help

    okay, i'm pretty good with programming, and I dont like asking for support on forums before I give it, but i know pretty much nothing about hardware and drivers
    so i dont really know if I have a sound cardor anything
    I have a windows xp
    I used some speakers with this computer when I first got it, and they worked fine. Thats when my OS was Windows XP Home
    I installed Windows XP Professional onto the computer because i had several viruses, and I noticed that I didnt delete Windows XP Home
    So i deleted it from cmd
    Now I only have the Windows XP Professional OS and sound doesnt work at all
    When i check my driver list under sound it has "Sound Blaster 6 or AWE32 compatible (WDM)" and its enabled, but theres an error, Code 0
    I've gone to windows update, but I dcouldnt get a driver update for it
    I've googled for updates, which led me to this site, but that didnt work either
    The CNET link is broken
    I don't know whats wrong or what to do
    PLZ HELP ME
    Any information on whats wrong or what to do would be much appreciated
    Thanks, GreyHeart :-D

    s = scan.readLine();
    double i = scan.nextDouble();
    i = Double.parseDouble(s);think again of what this line is doing.
    first, it reads one line from standard input and store it to variable s.
    and then it tries to read a double value AFTER the line inputted (which would be non-existing at this point) and store it to variable i (I think there should be an exception thrown at this point already, no?)
    Even if this line works semantically, the combination of this line and the third doesn't make sense. You already assigned a value to variable i, and before it's even read you continute to reassign value to it with
    i = Double.parseDouble(s);

  • Plz help!!! USB driver cannot be detected in XP

    i followed the step to install XP and setup with the Mac driver disc in xp, all the hardware was successfully be detected (blue tooth, display, wireless) but one of the USB driver are not, i don't what is this,plz help!

    cx2ching,
    I'm assuming you are trying Bootcamp. You might want to ask your question in the BootCamp forum:
    http://discussions.apple.com/category.jspa?categoryID=213
    One common problem with driver installations occurs if you aren't using Windows XP SP2, I read several threads where this was a problem with the USB drivers, for one.

Maybe you are looking for

  • Problem with file permissions using Snow Lepord

    I'm having problems with file Sharing & Permissions using Snow Lepord. When I save any new file it only has 'Read & Write' privileges for the user, everyone else is 'read only' or 'no access'. We have a Netgear NAS Server which is accessed by other u

  • SQ02 Data retrieval by program

    Hello, I would like create an abap query 'SQ01' using infoset 'SQ02' with the option 'Data retrieval by program' and 'Integrated program' I wrote and tested this program: REPORT  ZONR_REPORT_MBEW. data:  mbew_tab like mbew OCCURS 0 WITH HEADER LINE.

  • Interpreting Multibyte data with File Adapter in BPEL Process

    Hi all, I am trying to interpret multibyte data file using native schema file.The file is defined as below:- <?xml version="1.0" encoding="UTF-8" ?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:nxsd="http://xmlns.oracle.com/pcbpel/n

  • Action works, but droplet doesn't-CS4

    Create a droplet that will reduce quality of jpg image to reduce file size for e-mailing: I had created actions and droplets in Photoshop 7 & CS2 without problems. Using Photoshop CS4 11.0 Folders: D:\Storage\convert Source Dir D:\Storage\convert\jpg

  • That's where changes to a lymph

    That's where changes to a lymph fluid so actually becomes a clear fluid but there's like blood vessels and stuffing the den teens it's a very much in a live an active part in each to use she now the pulp chamber that's where if you're going to have a