How to configure dhcp server in Linux DHCP, or Dynamic Host Configuration Protocol, allows an administrator to configure network settings for all clients on a central server. The DHCP clients request an IP address and other network settings from the DHCP server on the network. The DHCP server in turn leases the client an IP address within a given range or leases the client an IP address based on the MAC address of the client's network interface card (NIC). The information includes its IP address, along with the network's name server, gateway, and proxy addresses,including the netmask. Nothing has to be configured manually on the local system, except to specify the DHCP server it should get its network configuration from. If an IP address is assigned according to the MAC address of the client's NIC, the same IP address can be leased to the client every time the client requests one. DHCP makes network administration easier an...
Apache2 Installation and Configuration on Ubunut 14.04 and run two instant website on server. ____________________________________________ Step1 After install Ubunut 14.04 ____________________________________________ Goto Terminal $sudo apt-get update $sudo apt-get install apache2 by default all apache2 file install in /etc/apache2/ And location of where we put our website contain /var/www/ ____________________________________________ Step2 _____________________________________________ Goto /var/www/ and creat a folder name /arvweb and creat a demo file/page under /arv/arv.html by using below command $sudo mkdir -p /var/www/arv $sudo nano /var/www/arv/arv.html #(and past below text) <html> <head> <title>Welcome to arv.com!</title> </head> <body> <h1>Success! arvapache.blogspot.com</h1> </body> </html> _____________________________________...