Announcement

Collapse
No announcement yet.

wireless IP address settings

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    wireless IP address settings

    if there is a way to do this, it would be awesome.

    here is the issue: I use my laptop for FIRST robotics. The robots is programmed using NI labview in windows xp and when I deploy code, I have to either be connected to the robot's wifi access point/router, or i must be tethered using ethernet.

    here is the bummer. to connect, the IP of the NIC I using to connect must have a static IP of 10.wx.yz.9 . the wxyz=team number of the bot, which for me is either 2783 (this year's competition bot), 2784 (used for old bots), or 2785 (for the other old bot). the team number is also the SSID of the wireless network. the bot I have been rewriting the code for is 2784, so my IP is 10.27.84.9. the subnet is always 255.0.0.0 .

    this IP is incompatible with most other things. as it is now, I must double click my network icon and go through 2 or 3 windows to get there and switch form dhcp to static and type in the code.

    is there a way (likely though external software) for say, wireless network 2784 to have a static IP of 10.27.84.9 and everything else to be dhcp?

    or, alternatively, since I have a separate admin for team use (so they can use my laptop for robotics w/o needing my password and still be able to change IP settings), for one admin to use one IP setting and the other to be dhcp?

    note- I don't have the HD space on my laptop for dual xp installs... nor do I want to go that route.

    i know it is doable in linux (it is easy... just create a new wired/wireless connection and use it for robotics-only)... but windoze doesn't have an obvious fix.

    ps- for more fun, ask me how to set up 3rd party radios or how the robot playing field control network works... that really gets into hardcore networking...
    sigpic

    (Insert witty quote here)

    #2
    Re: wireless IP address settings

    You can set one wirless device to have two static IPs... I haven't tried a static/dynamic combination...but see if this works...

    From the Network Connections window, right click your network connection, and select properties. Highlight Internet Protocol TCP/IP in the list, and click the properties button. Leave the General tab as dynamic. On the Alternate Configuration tab, enter your static IP info.

    If you have an Intel wifi card, download the Intel Proset software. It has many more options than the Windows zero configuration utility.

    If that doesn't work, My suggestion would be to automate it using a .bat or .cmd file.

    A combination of netsh and ipconfig commands should do everything you want...look up the parameters or run them with /? Make two batch files, one to configure it for static mode, and one to return it to dynamic mode. At least that way, once you figure out the commands, you can get it down to one click.
    Attached Files

    Comment


      #3
      Re: wireless IP address settings

      not quite it... this seems like a mission impossible.
      sigpic

      (Insert witty quote here)

      Comment


        #4
        Re: wireless IP address settings

        Code:
        netsh int ip set address name = "Wireless Connection" source = static addr = 10.27.84.9 mask = 255.0.0.0
        Rinse and repeat, name each batch file acccordingly.

        Comment


          #5
          Re: wireless IP address settings

          uh... i need dhcp for thinks like say, motel wifi.

          i have simplified the best i can by making the wired icon always show... just a random question.
          sigpic

          (Insert witty quote here)

          Comment


            #6
            Re: wireless IP address settings

            Code:
            netsh int ip set address name = "Wireless Connection" source = dhcp
            If that's not correct, it's close.

            So you'd end up with 4 batch files doing the leg work for you.

            Comment


              #7
              Re: wireless IP address settings

              Why would you need 4 batch files? Should only need one to set it to static, and one to return it to dynamic...

              Comment


                #8
                Re: wireless IP address settings

                He might want:
                10.27.83.9 255.0.0.0
                10.27.84.9 255.0.0.0
                10.27.85.9 255.0.0.0
                DHCP

                Comment


                  #9
                  Re: wireless IP address settings

                  Why dont you give hardware profiles a go, built into windows xp, should work for what you want i think. Each time you boot you just select the profile you want to use. More info can be found on this link. http://support.microsoft.com/kb/308577

                  Comment


                    #10
                    Re: wireless IP address settings

                    Originally posted by digge View Post
                    Why dont you give hardware profiles a go, built into windows xp, should work for what you want i think. Each time you boot you just select the profile you want to use. More info can be found on this link. http://support.microsoft.com/kb/308577
                    i tried it... didn't help any.

                    the IP settings are apparently not part of the hardware profile.
                    sigpic

                    (Insert witty quote here)

                    Comment


                      #11
                      Re: wireless IP address settings

                      Scripts are probably going to be the only way to go.

                      Comment

                      Working...
                      X