Rhce Notes
Rhce Notes
Rhce Notes
0 ES
Introduction:
Unix is the first Operating system in the world, developed by Kem Thompson and Dennis Ritchie in 1969 at
Bell Lab by AT&T Company
IBM : AIX
SGI : IRIX
HP : HP
Sun : Solaris
FSF:
Free software foundation organization, they start a project by name GNU. The mail aim of this
project is to develop such a O.S that can run on any platform.
In 1991, a student Linus Torvalds developed a kernel named Linus’s Kernel plus GNU application called
Linux O.S
Linux is a open source technology.
Different companies that provide Linux in Market are Redhat, SuSe, Mandrake, Turbo, Knoppix etc.
Features:
a. Linux is the fastest Operating system in the world. It runs 2 to 3 times fast than windows O.S
b. Linux is the very secured O.S because there is no any problem of virus.
c. Linux file format is text format and windows file format is binary format.
d. Linux is very reliable O.S because kernel of linux is very stable as compare to windows kernel not
crashed easily.
e. Kernel of linux is very small, it can be stored in floppy
f. Linux uses the x-Window system which is advanced network windowing system. Using this system
we can display output of any workstation monitor attached in the network
Advantages of Linux:
a. Virus Proof
b. Crash Proof
c. Economical
d. Multiuser, multi desktop and multi tasking
Mode of Login
Common Command
Some of the Common system command are as follow:
1. Date : to display date and time
2. Cal : to display the calendar
3. Cal 11 2006 : display the calendar of Month 11 and year 2006
4. Clear : To clear the screen
1
5. ls : to list directory contents
color identification
blue : Directories
White : Files
Green : Executable files
Red ; Zip files, rpm, tar file
Different switches used with “ls” command
ls –a : shows all hidden files and directory. Any file followed by (.) is hidden file
ls –al : show all hidden files and directory with long listing or whole description
a. Creating file:
The ‘cat’ command is used to create a file
Syntax:
# cat > filename
example:
# cat > abc.txt
(Ctrl +D) is used to save the file.
c. Creating Directory
The ‘mkdir’ command is used to create directory
Syntax:
Mkdir [directory_name]
Example:
# mkdir raj
2
Option used:
cd : To change directory
cd .. : To come out from directory
cd : to jump to root directory
cd - : to jump to previous directory
where
r = recursively
f= force
example;
rm –r raj
this will remove directory step by step ,first remove sub directory and then finally main directory.
b. Copy directory
#cp –r [source]directory [destination]
to copy a directory into another directory recursively
More than one file can be copied at a time if the destination is directory
Syntax:
cp [option] file1 file2 file 3 Destination
Syntax:
# mv : move /rename files and directory
Example:
# mv [option] file destination
example:
# mv t.txt /home/raj/
more than one file can be moved at a time if the destination is a directory
Getting Help:
The command that are used to get the help are discussed as :
a. Whatis
Display a short description of command , it uses a database that is updated nightly. Often not available
immediately after installation.
Syntax:
# Whatis cal
b. Help
Display usage summary and argument list
Syntax:
<command> --help
Example:
#Date –help
Option:
4
-c : Clear before displaying
-s : Squeeze multiple blank lines into a single blank line
-rwxrwxrwx : files
drwxrwxrwx : directory
files and directory permission are symbolized by ten character.
1. Symbolic Method:
Syntax:
Chmod mode directory/filename
Mode Option:
1. u,g,o
2. w,r,x
3. +,-
4. =
2. Numeric Method:
In this method, calculation are based on following numbers
5
r=4 w=2 x=1 0= no permission
Example:
#chmod 777 file/directory
in this case user get 7 means that user has permission of read/write/execute, group get 7 means
read/write/execute and ame for other
CD-rom:
/dev/cdrom
/dev/cdrom1
/dev/cdrecorder
Floppy:
/dev/fd0
/dev/fd1
Mounting CD Rom
# mount –t auto /dev/hdc /media/cdrom
-t : file type
auto : file type
in order to check where cdrom is attached we can open the file fstab
#vi /etc/fstab
now in case of RHEl 3.0 we have to use command in order to unmount.
# umount /media/cdrom
and then eject the cdrom
in case of RHEL 4.0 we simply type
# eject
Mounting Floppy
#mount –t auto /dev/fd0 /media/floppy
in case of floppy we have to umount first then only we remove floppy otherwise all content of floppy may
be lost or floppy may be physically damaged.
# umount /media/floppy
Mounting USB media :- directed by the kernel as SCSI device
/dev/sdax
Vi Editor:
Using vi , we can create or modify any file
7
K : UP
L : RIGHT
H : LEFT
c. Text Search
/text
example
/then
2. Insert Mode
Option I, insert, a ,o, O
i : insert mode start at the point where cursor is. Same is used with
insert option
a : insert mode start after one character
o : insert mode start after one line
O : insert mode start before one line
Example:
#adduser rakesh
#passwd rakesh
Now open the file /etc/passwd to check the entry of user
#vi /etc/passwd
it contain 7 entry of each user
1. Username
2. Password
3. userid
8
4. groupid
5. blank (User information field ) comment
6. home directory
7. login shell
password entry for each user will be stored in /etc/shadow
# vi /etc/shadow
# finger : this command is used to get the information about the user
Syntax:
#finger username
#finger rakesh
syntax:
#id username
#id rakesh
Creating Group:
Syntax:
#groupadd groupname
#groupadd –g gid groupname
Example:
#groupadd raj
Exercise:
Create a user that should have uid=1000 shell=sh description and home directory as /data
Sol:
#useradd –u 1000 –c rakeshpundir –s /bin/sh –d /data rakesh
#passwd rakesh
Grpahically
9
System Setting :-> User & Group
OR
#system-config-user
Every user have two group one is elementary group or primary group and secondary group
-g : Primary Group
-G : Secondary Group
Creating Group
#groupadd g1
#groupadd g2
Steps:
1. adding group to the user
#usermod –g g1 –G g2 rakesh
2. To change id of the user
#usermod –u 1001 rakesh
3. change comment
#usermod –c rakeshsingh
4. change home directory
#usermod –d /rakesh-home rakesh –m
5. change shell
#usermod –s /bin/bash rakesh
6. change user login name
#usermod –l newname oldname
#usermod –l rajesh rakesh
7. Change Group name
#groupmod –n newname oldname
#groupmod –n group1 g1
8. change Group id
#groupmod –g 2005 group1
Example:
#find /etc –name passwd
this command will search for all file name passwd in /etc and its subdirectories
now we can redirtect the standard outpout
#find /etc –name passwd > output
output is a file where command output will be stored. Standard error is still displayed on the screen
#cat output
If the target file of the file redirection with > already exists, the existing file will be overwritten. To append
data to an existing file use >> to redirect instead of >
#find /etc –name passwd >> output
10
We can redirect standard error with 2>
#find /etc –name passwd 2>errorfile
standard output is displayed on the screen , redirect further standard error, appending to the same file with
2>>
#find /etc/ -name passwd 2>>errorfile
#cat errorfile
Symbolic links:
A symbolic link point to another file. We can display the link name and the referenced file by ‘ls –l’
#ls –l pf
lrwxrwxrwx 1 root root pf->/etc/passwd
file type: l for symbolic link
the content of the symbolic link is the name of the file that is referenced
Syntax:
Ln –s filename [linkname]
Example:
Ln –s /etc/passwd password
There are seven fundamental file type
- : regular file
d : symbolic link
b : block special file
c : character special file
p : named file
s : socket
character special file are used to communicate with hardware one character at a time. Block special file is
used to communicate with hardware a block of data at a time : 512 bytes, 1024 bytes, 2048 bytes
ls –l /dev |less { to check c and b files}
named pipe type of file that passes data between processes. It stores no data itself socket file are used for
inter process communication.
The ‘du’ command reports the number of kilobytes contained by the items within a directory
#du –s
#du –h
-s : used to request only the summary directory information
#du –s /etc
Aliases:
Aliases are shortcut names for large commands. If we have command that run often, but take a
considerable amount of typing, we can reduce these to an aliases.
Alias c=clear
We can make a permanent entry of alias in .bashrc file
Type:
#vi .bashrc
alias c=`clear`
11
save and exit
Test your change by logging out, logging back and type the following
#alias
#c
Default Permission:
The default permission for files is 666 and directory is 777. umask is used to withhold permission. Default
root’s umask is 022. without a umask in effect, only file created will have 666 permission and directory will
have 777. this means that anyone on the system will have read and write access to any file. A umask of 002
will result in file created with 664 permission and directory with permission 775.
Default umask on Red hat enterprise linux is 002. to change
#umask 022
umask is typically set by script run at login time. The next time you lig in umask will be set bask to your
default unless you add command to one of your startup files such as .bashrc.
Run Level:
To check the run level we need to see the file /etc/inittab
#vi /etc/inittab
defaults run – level used by RHS are
0 : hault ( do not set init default to this)
1 : single user mode
2 : multi user mode without networking
3 : multi-user mode with networking
4 : unused
5 : X11 (Graphical)
6 : reboot
#runlevel : this command shows that in which run level you are at present
in init 3 runlevel, if you type command startx to go to the graphical mode then it will not ask you for
password.
By default we have 6 virtual console (text mode), but we van increase or decrease the number of text mode
simply by editing the file /etc/inittab
#vi /etc/inittab
line No 18 : id:5:initdefault
(we can change this value from 1 to 5 as per our need)
Line No 44 :
1:2345:respawn:/sbin/mingetty tty1
2:2345:respawn:/sbin/mingetty tty2
.
.
.
6:2345:respawn:/sbin/mingetty tty6
in these line if we add one more line the number of virtual console increase and if we remove one line ,
virtual console terminal decrease.
For adding
7:2345:respawn:/sbin/mingetty tty7
after editing this file we need to sane and exit
#init q : this command is used to activate the change made.
INSTALLATION:
Installation can be done either by CDROM , NFS, LAN, FTP
Partition type and its size
/ 10000MB
/boot 128MB
/home 1000MB
swap 256 MB ( 1.5 to 2 times more than RAM Size)
Note:
While installation we have to make sure that firewall option should be disable
1. No firewall
2. Selinux disable
Following Package are needed at the time of installation.
Desktop
1. X Window
2. GNOME
Application
1. Text Editor
2. Graphical Internet
3. Text Based Internet
Server
1. Server configuration tools
2. Web Server
3. Mail server
4. DNS server
5. FTP Server
6. Network Server
7. Legacy Network Server ( in this select Telnet)
System
1. Administrative Tools
2. System tools
3. Printing tools
While Installing Redhat linux 4.0 WS with the help of NFS and FTP, we have to perform the following step
First we have to check the rpm of ftp/nfs
ftp : vsftp-2.0.1…….
nfs : nfs-utils-1.0.6……
Now copy the disk 1 of the Redhat linux into the folder “/var/ftp/pub”
Now copy RPMS of remaining CD’s (Disk 2,3,and 4) inside /var/ftp/pub/RedHat/RPMS/
Now we need to configure the exports file.
#vi /etc/exports
13
/var/ftp/pub 192.168.0.0/255.255.255.0(rw,sync)
save and exit
now start the service
#service portmap restart
#chkconfig portmap on
#service nfs restart
#chkconfig nfs on
Now Boot the new system from disk 1 of Redhat linux and type
Linux askmethod
Choose language : English
Keyboard Type : U.S
Installation Method : NFS Image
NFS Server name : 192.168.0.254
NFS Dierctory : /var/ftp/pub
And continue the installation
There is slightly change in case of FTP
In case of FTP:
Boot the system from disk 1 of redhat linux and type
Linux askmethod
Choose language : English
Keyboard Type : U.S
Installation Method : FTP
Then first mentioned your system ip address in order to identify itself in network
192.168.0.24
255.255.255.0
then mentioned the FTP server address as
192.168.0.254
255.255.255.0
mount point : pub ( as in case of FTP the default path is /var/ftp)
and continue the installation
Kick Start
Kick start is one of the automatic installation method. Before making kick start file we need to check the
rpm
Rpm : system-config-kickstart
Kick start consist of installation wizard which we can configured for another system like general
information, root password, package , set the language, keyboard type, network, installation type etc. then
save the kick start with any name say nfsks.cfg under /root
Suppose we use NFS type then we have to mentioned
NFS Ip address : 192.168.0.254
Path : /var/ftp/pub
Now we have to edit the file nfsks.cfg by editing one line
Selinux-disable
Now we have to configure the file /etc/exports
#vi /etc/exports
/root 192.168.0.0/255.255.255.0(rw,sync)
/var/ftp/pub 192.168.0.0/255.255.255.0(rw,sync)
14
#service dhcpd restart
#chkconfig dhcpd on
To install RPM:
#rpm –i rpm_name
To Remove RPM
#rpm –e rpm_name
To Upgrade RPM:
#rpm –U rpm_name
15
#rpm –qi rpm_name
Example:
#at 10:30
at>eject
at>eject –t
ctrl+D
Option used
#at now
#at now+5 minutes
#at now+5 hours
#at now+5 days
#at tomorrow
#at 10:30 july 16 2006
we can also restrict the user not to use the ‘at’ command. Restriction will be provided by root login with
administrator.
#vi /etc/at.deny
inside this file we have to just mentioned the name of the user in order to restrict him not to use ‘at’
command.
Just save and exit form the file
By default all users are allowed to use ‘at’ command. ‘at.deny’ is default in system. We can also create a file
‘at.allow’ file. Once we create this file, now by default all users will be restricted to use ‘at’ command and
only that user which have entry on ‘at.allow’ will allow to use the ‘at’ command.
Another method is to make an entry inside the ‘crontab’ file. Entry will be done by the root. Difference
between these two method is crontab is used to perform the same task many times whereas job through ‘at’
command will be removed after the task has been performed.
16
1 2 3 4 5 6
minute hour day of Month day of command
month Week
Example:
35 10 31 05 3 eject
36 10 31 05 3 eject –t
Minute : 0-59
Hours : 0-23
Day of Month : 1-31
Month : 1-12
Day of Week : 0-7
0 and 7 are Sunday
#Whereis eject
this command display the path of the command. It is better to use the full path of the command inside
crontab instead of just the name of the command.
We can also make the entry as
35 10 * * * eject
36 10 * * * eject –t
In this case. These two jobs will be performed at 10:35 in every month.
Some command which are executed with ‘at’ or ‘crontab’ send their output to the user mail box. These
command are executed on background and their output is transferred to the particular user’s mail box. In
order to see the output of the command we use.
#mutt
This command will open the mailbox from where we check the output
Some of the switched used with the ‘crontab’
#crontab –l
List out all the job scheduled in crontab.
#crontab –r
Can remove the job from the crontab.
Fdisk:
Representation of Hard disk
/dev/hdx
/dev/hda : Primary Master
/dev/hdb : Primary Slave
/dev/hdc : Secondary Master
/dev/hdd : Secondary slave
Fdisk command is used to create a partition
#fdisk –l
Display the partition Listing
Creating Partition
#fdisk /dev/had
Press(m for help): m
Some important switches are
D : delete partition
N : New
17
L : listing
Q : quit
W : Save and Exit
T : changed type
Press : n
l: Logical (5 or above)
p: Logical partition( 1-4)
Type l
First cylinder (Take as default): Press Enter
Last Cylinder or +size or +sizeM or +sizeK (….) : +100M
Command (m for help) : w
# partprobe
( to update the partition table without restarting the computer)
B. Creating file
i. first make an empty file
#touch /swp
ii. Now we customize the size of the swap
# dd if=/dev/zero of=/swp bs=1M count=200
iii. Format the newly created swap file
#mkswap /swp
iv. Active the swap file
#swapon /swp
18
To check the entry of swap file
#cat /proc/swaps
If we want that automatically this swap file activate , we need to make the entry in /etc/ec.local
# vi /etc/rc.local
Make the following entry
Swapon /swp
Save and exit
User Quota:
Monitoring and controlling disk space usage is another important part of a system administrator tasks.
User quota is used to restrict the amount of disk space on each partition by each user.
Steps
1. Edit the file /etc/fstab
# vi /etc/fstab
Search the following line
“LABEL=/home /home etx3 defaults 1 2”
Just add ‘usrquota’ after the word ‘defaults” as
“LABEL=/home /home ext3 defaults,usrquota 1 2”
We can set the quota either by setting blocks soft and hard limit of inode ( Number of maximum file
created)
19
#repquota /home
Note:
We can generate the file of big size to check the quota
Syntax:
#dd if=/dev/zero of=bigfile bs=1M count=3
To check the quota for particular user after login
#quota
To set the grace period for particular user
#edquota –T username
We can also set the quota for particular user by using following command.
#setquota -u username 2000 3000 20 25 /home
/dev/hdax
Figure
/dev/hdax
20
After creating the logical volume, we need to format
#mkfs.ext3 /dev/vg00/lv00
Finally we mount it on /lvm
#mkdir /lvm
#mount /dev/vg00/lv00 /lvm
First we create the two partition say each of 100MB and then change its type to (‘fd’) Raid
Now we create a RAID
#mdadm –C /dev/md0 –level=1 –raid-disks=2 /dev/hda8 /dev/hda9
Now check the raid
#cat /proc/mdstat
‘OR’
#mdadm --detail /dev/md0
Format the newly created RAID
#mkfs.ext3 /dev/md0
Now mount it
#mkdir /raid
#mount /dev/md0 /raid
In order to check first we fail any one of the partition
#mdadm --manage /dev/md0 --fail /dev/hda8
Check the status of the RAID
#mdadm --detail /dev/md0
Removing the failure partition
#mdadm --manage /dev/md0 --remove /dev/hda8
To add new disk partition
#mdadm --manage /dev/md0 --add /dev/hda10
Note:
21
In order to add new partition first we create the partition and change its type to ‘fd’
Example:
#service nfs status
#chkconfig –list
#chkconfig –list nfs
22
To stop the particular service for particular Run level
#chkconfig –level 3 nfs off
#chkconfig –level 3 5 on/off
To make on or off in run level 3 and 5
#ntsysv : will start /stop all the services in a particular run level. It will display the dialog box in which all
the services are mentioned
Service Profile
Type : System V managed Service
Package : dhcp
Daemon : dhcpd
Script : dhcpd
File : /etc/dhcpd.conf
Port : 67,68
First check the rpm
#rpm –q dhcp
Copy and rename dhcpd.conf.sample to dhcpd.conf in /etc
#cp /usr/share/doc/dhcp-3.0.1/dhcpd.conf.sample /etc/dhcpd.conf
Now open file
#vi /etc/dhcpd.conf
#chkconfig dhcpd on
#chkconfig portmap on
Client Side
#dhclient
Dhclient is used to give the request to dhcp server to assign an address to client
Now if we want to assign the static IP address by their MAC address
#vi /etv/dhcpd.conf
Set the following configuration
host stationX {
23
hardware Ethernet 00:34:e3:5r:q1:34;
fixd-address 172.24.0.54;
where
x : Station number
Service Profile
Type : System V-managed
Package : nfs-utils
Daemon : rpc.rquotad, rpc.statd.nfsd
Script : nfs
Port : 2048
Configuration File : /etc/exports
Server Setting
First make the folder which you want to share
#mkdir /share
#cd /share
#touch a d f
#chmod o+w a b
Now open the configuration file
#vi /etc/exports
Make the following entry
/share 172.24.0.0/255.255.0.0(rw,sync)
Client
Mount the /share directory on client machine
#mount –t nfs:172.24.254.254:/share /mnt
Where /mnt is a mount point
24
/share 172.24.0.4/255.255.0.0(rw,sync)
#export –r
#export –a
#export –ar
If we run this command then there is no need to restart portmap and nfs again and again.
Service Profile
Type : system V manage
Package : Server
Portmap ypserv make
Client
Authconfig authconfig-gtk portmap yp-tools ypbind
Daemon : rpc.ypserv rpc.yppasswddd
Script : ypserv, yppasswdd
Configuration : /etc/sysconfig/network
/var/yp/Makefile
Server Setting:
Steps
1. Check the rpm’s
#vi /etc/sysconfig/network
Define the following line
NISDOMAIN=ICON
Save and exit
#vi /var/yp/Makefile
Search for “/all: “ line
Remove all the entry except
all: passwd group hosts netid
save and exit
25
4. Start the service
#service portmap restart
#chkconfig portmap on
#service ypserv restart
#chkconfig ypserv on
/rhome/nisuser1 172.24.0.0/255.255.0.0(rw,sync)
Client Setting:
1. Check the rpm’s
#vi /etc/auto.master
26
#vi /etc/auto.misc
Service Profile
Type : System V manage
Package : bind, bind-chroot, caching-nameserver, bind-utils
Daemon : named
Script : named
Configuration file : /var/named/chroot/etc/named.conf
/var/named/chroot/var/named/*
Port : 52 (UDP), 53 (TCP)
Server Setting
1. Edit the file named.conf
#vi /var/named/chroot/etc/named.conf
Edit the line after copying line N 37 to line 47
Zone “example.com”{
Type master;
File “example.zone”;
Allow-update {none;} ;
};
Zone “24.172.in-addr.arpa”IN{
Type master;
File “example.local”;
Allow-update {none;};
};
27
……….
……….
……….
……)
@ IN NS server1.example.com.
254.254IN PTR server1.example.com.
1.0 IN PTR station1.example.com.
2.0 IN PTR station2.example.com.
4.0 IN PTR station3.example.com.
Note:
Like this we can make entry all the stations connected to that network
DNS Client
28
Now finally use the Dig and nslookup command to check the DNS from client side
Term
IN : Internet
SOA : Start Of Authority
TTL : Time to Line
NS : Name server
A : Address Record
PTR : Pointer Record
MX : Mail server
SOA is the first line in the zone file. It identifies the name server as the authoritative source for information
about this domain
TTL indicate how long to hold the data in their cache
NS shows the name of name server
A shows the IP address for name server
MX is a mail Exchange record
PTR is used to point to the name server
CNAME is CONONICAL name shows the real name of the host
Server Profile
Type : System V manage
Package : Squid
Daemon : Squid
Script : Squid
Configuration : /etc/squid/squid.conf
Port No : 8080 , 3128
Steps
29
Syntax : acl aclname acltype Name or domain
Example:
acl icon1 dstdomain .hotmail.com
Client Side:
1. Click on Mozilla Web Browser
2. Click editÆPreferences
3. Click on “Connection Setting”
4. Select “ Manual Proxy Configuration”
Http Proxy : 172.24.254.254 Port 8080
Send Mail
Sendmail is used to configure the mail server on the server in order to send and receive the mail.
Service Profile
Type : System V manage
Package : sendmail, sendmail-cf, procmail, mutt , m4
Daemon : sendmail
Port : 25
Configuration File : /etc/mail/sendmail.mc
/etc/mail/sendmail.cf
/etc/mail/access
/etc/aliases
Steps:
1. Edit the file sendmail.mc
Line number 105
DAEMON-OPTION(……………………….)
Disable this line by adding
dnl#
2. Now create a new sendmail.cf file through sendmail.mc
#m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf
3. In order to allow / restrict other network or client or any user to send mail we edit file
/etc/mail/access
#vi /etc/mail/access
172.24 OK
172.24.0.4 REJECT
[email protected] DISCARD
OK : Allow
REJECT : restrict and message reply will come
DISCARD : restrict and message reply will not come
30
6. To check the mail
#mutt
If any problem come that /var/spool/mail/root does not exits then create a file by
#touch /var/spool/mail/root
Configuration
Steps:
1. Type the following command
#printconfig
Or
#system-config-printer
Assign
Queue name : xyz
Device name : IPP
Select Printer Driver “ raw printer queue”
Server : server1.example.com
Path for the Queue Directory : /printer/xyz
FTP provides file sharing between linux to linux , linux to Unix and Linux to Windows
Service Profile
Type : System V manage
Package : vsftpd
Daemon : vsftpd
Script : vsftpd
Configuration File : /etc/vsftpd/vsftpd.conf
Port : 21
B
In user access, client machine connect to Target machine by having username and password on
Target machine
User entry in these two file are not allowed to access ‘ftp’
If we want that user entry in vsftpd.user_list can only access ftp server then we need a entry in vsftpd.conf
#vi /etc/vsftpd/vsftpd.conf
Add following line
Userlist-deny = No
#vi /etc/vsftpd/vsftpd.conf
Anonymous-enable = yes
#uncomment line 27
Anon-upload-enable = yes
#uncomment
Chown-uploads = yes
Chown-username = daemon
32
In Graphical
ftp://[email protected]
To upload: put
To download : get
Example:
#put <filename> to upload any file in user home directory
#get <filename. To download any file from user home directory
Service Profile
Type : System V Manage
Daemon : httpd
Script : httpd
Port : 80
Package : httpd, portmap
Configuration File : /etc/httpd/conf/httpd.conf
Steps:
<VirtualHost 172.24.254.254:80>
ServerAdmin [email protected]
DocumentRoot /www
ServerName server1.example.com
</VirtualHost>
33
#vi /etc/httpd/conf/httpd.conf
<VirtualHost 172.24.254.254:80>
ServerAdmin [email protected]
DocumentRoot /www
ServerName Server1.example.com
<Directory /www>
Option Indexes Includes
AllowOverride Authconfig
</Directory>
</VirtualHost>
#elinks http://server1.example.com
SSH or Secure Shell is used for the purpose of remote login between linux to linux and linux to Unix. The
mail difference between SSH and telnet is that SSH can be used for file transfer.
Service Profile
Type : System V manage
Package : open ssh, open ssh-server, openssh-client
Daemon : sshd
Port : 22
Script : sshd
Configuration File : /etc/ssh/sshd-config
34
#chkconfig sshd on
Samba
Samba can be used to share file and printer between linux to linux, linux to Unix and Linux to windows
Service Profile
Type : System V Manage
Package : Samba, samba-common, samba-client
Daemon : smbd, nmbd
Script : smb
Port : 167,168,169
Configuration file : /etc/samba/smb.conf, /etc/samba/smbpasswd.
#smbpasswd –a raj
#smbpasswd –a rakesh
35
#service smb restart
#chkconfig smb on
On client side
#smbclient //172.24.254.254/raj –U raj
GUI
Smb://172.24.254.254
IP Forwarding
In Linux, we can’t use a computer with two network interface to route between two or more subnet. To be
able to do this we need to make sure that we enable IP forwarding. We should make sure that module is
loaded. To check type
#cat /proc/sys/net/ipv4/ip-forward
If forwarding is enabled, the number 1 is returned. If forwarding is not enabled, the number 0 is returned.
To enable IP forwarding
#vi /etc/sysctl.conf
Line no.7
Net.ipv4.ip_forward = 1
Save and exit
To activate permanently
#sysctl –p
Or another method is
#echo 1 >/proc/sys/net/ip_forward
This work for temporary use till system is ‘ON’
Second network
#netconfig –d eth0:1 (-d : virtual)
IP Address : 172.25.254.254
Subnet : 255.255.0.0
Default Gateway : 172.24.254.254
Primary Server : 172.24.254.254
Security Policies
According to the service management, there are three type of security policies
1. Security within a service
2. security provided by TCP wrappers
3. security provided by xinetd
TCP Wrappers
Configuration needed two file
a. Hosts.allow
b. Hosts.deny
By default all are allowed
36
Check the rpm
#rpm –q tcp_wrappers
Syntax
Daemon_list : client_list
#vi /etc/hosts.deny
Vsftpd : 172.25.0.0/255.255.0.0
#vi /etc/hosts.deny
Vsftpd : ALL EXCEPT 172.24.0.0/255.255.0.0
Example 5: Allowing 172.24.0.0 except 172.24.0.1 to use ssh service and disallowing all other network
#vi /etc/hosts.deny
Sshd : ALL EXCEPT 172.24.0.0/255.255.0.0 EXCEPT 172.24.0.1
Some of the daemon are
Imapd
Ipop3d
Smbd, nmbd
Telnet
Telnet service is used for the purpose of remote login between linux to linux, linux to unix and linux to
windows
Service Profile
Type : xinetd
Package : telnet-server, telnet
Daemon : based on xinetd
Script : based on xinetd
37
Configuration : /etc/xinetd.d/telnet
Security setting
1. For particular system
#vi /etc/xinetd.d/telnet
Only_from = 172.24.0.6
Save and exit
By default all node in a network can access through telnet
Time setting
#vi /etc/xinetd/telnet
Acees_time = 04:15=04:30
38
Imapd : 172.24.0.0/255.255.0.0
#vi /etc/hosts.deny
Ipop3d : ALL
Imapd : ALL
These permission are set when host from local network can access pop3 and imap and hosts from other
network does’nt allow
Digital Certification
Certificate is used for the purpose of authentication
Steps
1. Check for devecot.pem file in
#cd /usr/share/ssl/certs
#rm dovecot.pem
#make dovecot.pem
In this we have to make the following entries
a. country
b. state
c. street
d. company and unit name
e. station name
f. email address
after making all those entry we need to copy this file
#cp dovecot.pem /usr/share/ssl/private/dovecot.pem
Overwrite : yes
To check the status or entry
#openssl x509 –noout-subject </usr/share/ssl/private/dovecot.pem
UMask
User Mask
Default value for root = 0022
Default value for users = 0002
When we create any new file. The default value will be 666. in this case Umask means 666-002 = 664 for
normal user and for the root the default value will be 666-022=644
The default value for a directory is 777. in this case umask means that whenever we create new directory,
the default valkue for normal user 777-002 = 775 and for root, the default value 777-022 = 755
Some Important File Settings:
1. GRUB.CONF
GRUB stands for GRand Unified Bootloader. It is the default boot loader used by Red Hat Linux
Grub.conf file found in /boot/grub/grub.conf and its symbolic links found in /etc/grub.conf
39
#vi /etc/grub.conf
Default = 0
Timeout = 5
Splash image=(hd0,0)/grub/splash.xpm.gz
Hidden menu
Title Redhat Linux
Root (hd0,0)
Kernel /vmlinuz-2.6.9-5.EL ro root=LABEL=/ rhgb quiet
Initrd /initrd-2.6.9-5.EL.img
2. INITTAB FILE
Run level setting are done in inittab file. Inittab found in
/etc/inittab
#vi /etc/inittab
id:5:initdefault:
si::sysinit:/etc/rc.d/rc.sysinit
l0:0:wait:/etc/rc.d/rc 0
l1:1:wait:/etc/rc.d/rc 1
l2:2:wait:/etc/rc.d/rc 2
l3:3:wait:/etc/rc.d/rc 3
l4:4:wait:/etc/rc.d/rc 4
l5:5:wait:/etc/rc.d/rc 5
l6:6:wait:/etc/rc.d/rc 6
X:5:respawn:/etc/x11/prefdm –nodaemon
40