you don't assign one yourself, persay... They are more or less assigned for you. With dialup connections, each time you connect to your ISP they give you a temporary IP to use while you are connected. When you disconnect, that IP is thrown back into a pool of other IP's and ready for the next person who connects.
Broadband and higher connections use static IP's quite often because of their "always on" capabilities. Since they never disconnect they are going to be the only ones using it and are often assigned an IP by their provider/ISP. Once that IP is assigned they can use it to directly link websites, ftps, telnets, etc to a specific computer. In order to get it changed, you would have to contact the provider and talk with them.
[Or, if you have been granted control of your own public network, you may do this directly by choosing and assigning an IP address within your "owned" public subnet to the machine(s) you choose. Beware that this means you need to handle your own "routing, switching and security (usually your own firewall)". JMH]

Linux
Click Start, click Control Panel, click '''Network and internet Connections, and then click Network Connections.'''
:
Any IP (Internet Protocol) address can be assigned to a Linux machine with a single step using the 'ifconfig' command. You must be 'root' user to issue this command. As is clearly illustrated by the lengthy, over complicated sequence of steps in the answer above, assigning two Internet Protocol addresses to a single Ethernet interface on a Linux host is refreshingly simple and elegant...
ifconfig eth0 192.168.2.2 netmask 255.255.255.0
To bring the interface up or down, in the example above, it is interface eth0,
issue the command:
ifconfig eth0 up
or
ifconfig eth0 down
No wonder Linux and it's BSD (Berkeley Software Distribution) counterparts are
running the vast majority of the web servers on the Internet, besides the fact
Linux and friends are faster, more user friendly (IMHO anyway) and of course,
far more reliable (not to mention more powerful).
Copyright © 2026 eLLeNow.com All Rights Reserved.