Loading

[NEW SOLN] WEB375 LAB 2 CONFIGURE A DNS SERVER IN LINUX

[SOLVED] WEB375 LAB 2 CONFIGURE A DNS SERVER IN LINUX: Lab Scenario
The purpose of this lab is to create a DNS server in Linux. Use the IP addresses that exist when you start Linux.
Virtual Machine Login Information for PLABFED01 and PLABFED02
Username: Student
Password: Password
Username: root
Password: Password

[SOLVED] WEB375 LAB 2 CONFIGURE A DNS SERVER IN LINUX: Lab Diagram
During your session, you will have access to the following lab configuration.
WINCONSOLE PLABFED01 PLABFED02
The Linux servers also connect to a private network. The IP address of PLABFED01 is 192.168.240.11 and the IP address of PLABFED01 is 192.168.240.12.

Connecting to Your Lab

[SOLVED] WEB375 LAB 2 CONFIGURE A DNS SERVER IN LINUX: In this module you will be working on the following equipment to carry out the steps defined in each exercise.

  • WINCONSOLE (Management Server)
  • PLABFED01 (Linux Server)
  • PLABFED02 (Linux Server)

Each exercise will detail which console you are required to work on to carry out the steps.
To start simply click on the named Server from the device list (located on the left hand side of the screen) and click “Power on” from the Tools bar. In some cases the devices may power on automatically.
During the boot-up process an activity indicator will be displayed in the name tab:

  • Black—Powered off
  • Orange—Working on your request
  • Green—Ready to access

[SOLVED] WEB375 LAB 2 CONFIGURE A DNS SERVER IN LINUX: If the remote console is not displayed automatically in the main window (or pop-up), click the Connect icon located in the Tools bar to start your session.
If the remote console does not appear, please try the following option:

  • Switch between the HTML 5 and Java client versions in the Tools bar.

In the event this does not resolve your connectivity problems, please visit our Help and Support pages for additional resolution options.
DNS Configuration Step by Step
General Information
We are going to create a DNS server with the following assumptions:

  • Domain name is linuxlab.org
  • DNS server name is dnsserv
  • IP address of the DNS server is192.168.240.11
  • IP address of the other Linux system on the network is 192.168.240.12

[SOLVED] WEB375 LAB 2 CONFIGURE A DNS SERVER IN LINUX: TASK A—Configure DNS server

Step 1: Use TigerVNC to logon to the PLABFED01 system. Open a terminal window, switch to root, and make sure the bind package is installed. Type the following command.
rpm -q bind bind-utils

Step 2: If it tells you that the package is not installed then you need to install it; otherwise skip
To install bind on Fedora Linux system, type the following.
yum –y install bind bind-utils

Step 3: To enable the name server at boot time, type the following.
systemctl enable named.service

Step 4: Configure the “/etc/named.conf” file. Use a text editor (vi, nano) to edit the /etc/named.conf, comment out two line as shown, then insert the shaded lines below.

Support