-
Static IPs are typically only used on servers. Remembering how to set it up has always been so-so as it's done only once when setting up the server the first time. I've not use Centos much before I started working...
-
For a long time I have been using bind as a LAN DNS server. Just for my local server setup, so that I can use hostnames instead of IP addresses. I found the hosts file to be a bit low-tech,...
-
In my work I have to connect to various equipment that uses different IP addresses in order to configure and monitor them. To make it easier for myself I have made a couple of script files so that I can...
-
For virtual hosts it's necessary to make a bridged network adapter. At least if you want your hosts to be on the same network as the rest of your machines. Here's how it's done # The primary network interface auto...
-
To set static IP address on debian (or derivative distros) is straight forward. A workstation don't necessarily need to use static addresses, but it's unavoidable on a server. The file that needs to be changed is located in /etc/network/ and...
-
I ran across a mailinglist with a post about the "map to guest" parameter. It describes it rather well. ==== samba defaults to "never" which the developers believe is a good idea. however, i believe the default for NT4 is...
-
Use multiple IPs on one Ethernet card in my server In the Network Section eth0="eth0 192.168.100.4 netmask 255.255.255.0 broadcast 192.168.100.255" eth1="eth0:1 192.168.100.5 netmask 255.255.255.0 broadcast 192.168.100.255" eth2="eth0:2 192.168.100.6 netmask 255.255.255.0 broadcast 192.168.100.255" eth3="eth0:3 192.168.100.7 netmask 255.255.255.0 broadcast 192.168.100.255" INTERFACES=(lo eth0...
-
To create a key to use for authentication use the command [john@workstation]$ ssh-keygen -t rsa -b 1024 -t rsa sets the algorythm type which can be either rsa or dsa -b 1024 sets the keylength in bits You'll need to...