­
Devops

Installation of DHCP Server on Linux Server

3:30 PM
Ubuntu- Server to install DHCP Server#app-get Install dhcp3-Server or sudo apt-get install isc-dhcp-server Red hat/fedora/centos - Server to install dhcp Server#yum install dhcp configuration file for dhcpRedhat/fedora/centos linux DHCP configuration file /etc/dhcp/dhcpd.confubuntu linux configuration file/etc/dhcp/dhcpd.conf add below entires scope for dhcp-server and lease-time default-lease-time 600; max-lease-time 7200; subnet 10.1.1.0 netmask 255.255.255.0 {  range 10.1.1.3 10.1.1.254;} subnet 192.168.0.0 netmask 255.255.0.0 {} configuration of host...

Read More...

Devops

Setting up network ip address with Linux (Redhat/centos/ubuntu)

1:07 PM
Network Configuration can be done by  couple of ways use the following commands Ifconfig                                                      : display the network Setting Ifconfig –a                                                : display all the adaptors/settings/configurations ifconfig eth0 down                               ; power down the Ethernet adaptor eth0 ifconfig eth0 up                                    : power up the Ethernet adaptor eth0 ifconfig eth0 192.168.1.1                   : set eth0 adaptor to ip address to 192.168.1.1 ifconfig eth0 netmask 255.255.255.0 :...

Read More...

Powershell

Setting up the network adopter by PowerShell

12:41 PM
# Import the NetAdapter module. This step is provided for clarity. It is not needed due to the new module autoloading feature in Windows PowerShell 3.0 Import-Module NetAdapter  # Retrieve the network adapter that you want to configure. $netadapter = Get-NetAdapter -Name Ethernet # Disable DHCP. $netadapter | Set-NetIPInterface -DHCP Disabled # Configure the IP address and default gateway. $netadapter | New-NetIPAddress -AddressFamily...

Read More...

Contact Form

Name

Email *

Message *

Translate

Wikipedia

Search results