Chapter - 6 Managing Network Services
Chapter - 6 Managing Network Services
1. If you are running a web service like web site, Email and you
want to be able to tell the internet that what IP address to
reach your web site.
2. you probably want work on your server or user machines
remotely and to use a host name instead of using IP address
to access the server or user machine.
3. To map our internal computers to IP addresses
How DNS works: Example
DNS Server configuration in windows Server
DNS Server configuration in windows Server…
DNS Server configuration in Linux Server
• BIND (Berkeley Internet Name Domain) is the
default name server for Linux OS.
• Installation and Configuration:
– Update your server and Install BIND on it. Execute the
following commands one by one.
$sudo apt-get update
$sudo apt-get install bind9 bind9utils bind9-doc
– Before proceeding you can optionally set bind9 to IPv4
mode.
$sudo nano /etc/default/bind9
– Add "-4" to the OPTIONS variable. Then save and exit. It
should look like the following:
OPTIONS="-4 -u bind"
Electronic Mail
▪ Making sure that electronic mail gets sent out and delivered is
one of the system administrator’s most important jobs.
▪ E-Mail is a mechanism by which peoples send and receive
electronic message over the Internet.
▪ It gives us the ability to contact any person in the world in a
matter of seconds.
▪ With E-Mail, one can compose a message, attach any necessary
files, and send it to the recipient.
▪ The main components of an e-mail system that facilitate sending
and receiving of e-mails on Internet are :
– An e-mail client
– An e-mail server (SMTP server)
– POP and IMAP servers.
An E-Mail Client
▪ If you use e-mails for online communication then you would
definitely be using an e-mail client.
▪ An e-mail client provides you with the following capabilities:
▪ Provides a list of messages that people have sent to you. Each
entry in the list contains the name of sender, a subject, a few
words from the message body and the time/date on which it
was received.
▪ Provides the ability to read a complete message, reply to it or
forward it to other people.
▪ Provides the ability to compose a new message and send it to
the desired recipients.
▪ Delete a message.
An E-Mail Client…
▪ Linux domain controller using samba ▪ Linux file & print sharing using samba
Steps to configure samba server on Linux
▪ Update your operating system repository and install samba on
linux , then
▪ Modify /etc/samba/smb.conf(Take backup before you modify the
smb.conf file)
– nano smb.conf
▪ Create smb user
▪ Restart smb
– service smb restart
▪ Then , your windows client will be able to access the shared file
and printer
Install and configure FTP on windows server
Install and configure FTP on windows server…
Install and configure FTP on windows server…
Steps to Install and configure FTP server on Linux
Step 1: Update System Packages
– sudo apt-get update