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...
Labels
Active Directory
(59)
Apache
(7)
Backup
(6)
Citrix VDI in box
(9)
Cloud Computing
(5)
Clustering
(23)
DAS
(5)
Data Center
(6)
Devops
(2)
DFS
(2)
DNS
(5)
DRBD (Distributed Replicated Block Device)
(1)
Exchange
(5)
file services
(2)
flow charts
(9)
Hardware
(15)
Hyper-V
(2)
IIS
(11)
Jboss
(2)
Linux
(145)
MangoDB
(4)
Migrations
(1)
MYSQL
(30)
Netscalar
(3)
Networking
(4)
Oracle
(8)
Performance Engineering
(2)
PostgreSQL
(12)
Powershell
(8)
Project Management
(11)
Puppet
(2)
PVS
(1)
SALT
(1)
SAN
(15)
Scripting
(13)
SendMail
(2)
Sharepoint
(6)
SMS
(1)
SQL
(16)
SSL
(5)
Symantec AntiVirus
(7)
tomcat
(13)
Tools
(17)
VBscripting
(5)
Vmware
(30)
Windows
(199)
windows 10
(4)
XENAPP
(85)
XENDESKTOP
(17)
XENSERVER
(2)
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 :...
# 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...