🚫 PRODEVANS CONFIDENTIAL – Do Not Copy or Share 🚫
Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

8 total results found

DNS configure RHEL 9

Sankar Behera Configure DNS (Domain Name System)

what is dns ? A fundamental networking service  that translates human readable Domain names to numerical IP addresses. Prerequisites: We have to take two server/nodes one of  is server another client server. You must have static IP and Hostname 1 Workstat...

How to DNS Configure file

Sankar Behera Configure DNS (Domain Name System)

 After that go to the configuration and give entry  # vim  /etc/named.conf Create The Zone File

Sankar Behera Configure DNS (Domain Name System)

How to Create Zone file

Sankar Behera Configure DNS (Domain Name System)

In the second image as shown we have to create the zone sections. Zone “example.com” IN { type master; file “forward.example.com”; Allow-update { none; }; }; Zone “1.168.192.in-addr.arpa” IN { type  master; file “reverse.example.com” Allow-update { none; }; };...

DNS forward and revorse Zone file

Sankar Behera Configure DNS (Domain Name System)

$ whatever file we gave in our named configuration file that files should be present in /var/named directory . Now we have to create the files. # vim /var/named/forward.example.com # vim /var/named/reverse.example.come eeed $ forward.example.com and reverse...

DNS Server and Client Configuration Guide

Sankar Behera Configure DNS (Domain Name System)

Note: Make sure you have changed the group ownership of the file , if you have complted configuration of the file but did not change the group ownership then the DNS server did not work. $ Now you will move on to the client site.  $  In there we have to config...

How to Configure NFS

Sankar Behera NFS Configure ( Network File System)

What is Network File System “NFS” ? NFS stands for network file system u have a folder on Computer erver Yo A, and you want to open or edit files in that folder from Computer B — without copying them. NFS makes that possible.  1. Centralized Storage {why} Stor...

NFS Server and Client Setup Guide

Sankar Behera NFS Configure ( Network File System)

3. create a directory and give the full permission to /sankar/nfs directory  #mkdir -p /sankar/nfs  #chmod  777 /sankar/nfs 4. After that open the configuration file and give the entry  # vim /etc/exports  /sankar/nfs 192.168.96.42(rw,sync)   Save and exit Af...