Linux Network Configuration

Slides:



Advertisements
Similar presentations
CIS 193A – Lesson9 Network Infrastructure. CIS 193A – Lesson9 Focus Question What are three high level subnets a corporate intranet will want to support?
Advertisements

DHCP -Ameeta and Haripriya -cmsc 691x. DHCP ► Dynamic Host Configuration Protocol ► It controls vital networking parameters of hosts with the help of.
Linux network troubleshooting If your network connection is not working..
2000 Copyrights, Danielle S. Lahmani UNIX Tools G , Fall 2000 Danielle S. Lahmani Lecture 12.
A+ Guide to Software, 4e Chapter 4 Supporting Windows 2000/XP Users and Their Data.
Linux Setting up your network. Basic Approaches Configure during installation –Disadvantage -> not able to redo easily –Advantage-> holds your hand Configure.
CS27510 Commercial Database Applications. Maintenance Maintenance Disaster Recovery Disaster Recovery.
UNIX/LINUX OPERATING SYSTEM
Guide to Linux Installation and Administration, 2e1 Chapter 13 Backing Up System Data.
Module 9 - Networking. 1.Network Concepts and Commands 2.Network Files 3.Network Services 4.Configure a network device 5.Network File-System (NFS & CIFS)
Event Viewer Was of getting to event viewer Go to –Start –Control Panel, –Administrative Tools –Event Viewer Go to –Start.
70-290: MCSE Guide to Managing a Microsoft Windows Server 2003 Environment, Enhanced Chapter 12: Managing and Implementing Backups and Disaster Recovery.
Windows Server 2003 資料備份與還原 林寶森
DHCP. DHCP (Dynamic Host Configuration Protocol) is a network service that enables clients to obtain network settings (IP Address, Subnet Mask, Default.
GNU/Linux Fundamentals Part 3
Linux Network Setup.
1 CSC2405: System Administration Week 5 -- Backup what to do? where to? which way? Tools?
Connecting to Network. ♦ Overview ► A network connection is required to communicate with other computers when they are in a network. Network interface.
Yi Shen Mar 18 th, Backup workshop Stanford Exploration Project.
System Administration and Basic Functionality Version 4.0 – September 2007 Q-Advisor Quick Start.
ITI-481: Unix Administration Meeting 5. Today’s Agenda Network Information Service (NIS) The Cron Program Syslogd and Logging.
Chapter 9 Scripting RMAN. Background Authors felt that scripting was a topic not covered well Authors wanted to cover both Unix/Linux and Windows environments.
ITI-481: Unix Administration Meeting 5 Christopher Uriarte Rutgers University Center for Applied Computing Technologies.
Linux Operations and Administration
System Administration System Configuration and Logs.
System Monitoring and Automation. 2 Section Overview Automation of Periodic Tasks Scheduling and Cron Syslog Accounting.
TELE 301 Lecture 10: Scheduled … 1 Overview Last Lecture –Post installation This Lecture –Scheduled tasks and log management Next Lecture –DNS –Readings:
Linux+ Guide to Linux Certification, Third Edition
Linux Network Configuration Linux System Administration /etc/resolv.conf Tells the kernel which name server should be queried when a program asks to "resolve"
Running the Operational Codes for the Brahmaputra Tom Hopson.
SUSE Linux Enterprise Server Administration (Course 3037) Chapter 6 Manage Linux Processes and Services.
11 DISASTER RECOVERY Chapter 13. Chapter 13: DISASTER RECOVERY2 OVERVIEW  Back up server data using the Backup utility and the Ntbackup command  Restore.
A Practical Guide to Fedora and Red Hat Enterprise Linux Unit 9: Linux Network Services Chapter 16: Administration Tasks By Fred R. McClurg Linux Operating.
1 Periodic Processes and the cron Daemon The cron daemon is where all timed events are initiated. The cron system is serviced by the cron daemon. What.
1 COP 4343 Unix System Administration Unit 11: Networking – basic concepts: IP, TCP, UDP, DHCP – devices: setup, status.
Linux Setting up your network. Basic Approaches Configure during installation –Disadvantage -> not able to redo easily –Advantage-> holds your hand Configure.
Core System Services. INIT Daemon The init process is the patron of all processes. first process that gets started in any Linux/ UNIX -based system.
How to connect to the Internet 1998/12/09 KEIO University, JAPAN Mikiyo
Network Configuration. NAT Mode, disable DHCP server.
Running the Operational Codes for the Brahmaputra Tom Hopson.
Linux Operations and Administration
Configuring, Managing and Maintaining Windows Server® 2008 Servers Course 6419A.
ITI-481: Unix Administration Meeting 5 Christopher Uriarte Rutgers University Center for Applied Computing Technologies.
Basic UNIX system administration CS 2204 Class meeting 14 *Notes by Doug Bowman and other members of the CS faculty at Virginia Tech. Copyright
1 COP 4343 Unix System Administration Unit 8: – at – cron.
Running the Operational Codes for the Brahmaputra Tom Hopson.
Chapter 4: server services. The Complete Guide to Linux System Administration2 Objectives Configure network interfaces using command- line and graphical.
Setting up data redundancy on DSS V6 with Asynchronous Data Replication and local Backup Software Version: DSS ver up50 Presentation updated: October.
Domain Resolution Configuration Files: File: /etc/resolv.conf - host name resolver configuration file search name-of-domain.com - Name of your domain or.
Linux 101: Managing Jobs, Schedules, and Backups Purdue Linux Users Group Speaker: Thor Smith.
Chapter Overview Understanding Windows Name Resolution Using WINS.
Chapter 12: Configuring Networks
Linux network troubleshooting
Chap-I Network and System Configuration in Linux
Running the Operational Codes for the Brahmaputra
System Programming and administration CS 308
Chapter 9 Periodic Processes
LINUX ADMINISTRATION
Chapter 22 Web Hosting and Internet Servers
LINUX ADMINISTRATION 1
Unix Linux Administration I
System Administration
How to… Use Crontab for SFX
CompTIA Linux+ Powered by LPI 2 LX0-104 Dumps PDF LX0-104 Dumps LX0-104 Braindumps LX0-104 Question Answers LX0-104 Study Material.
Like tron and not kron, or chron
VLAN Theory and Implementation
Version A.01 H3064S Module 14 Slides
Chapter 12 Linux Networking.
Periodic Processes Chapter 9.
Module 12 Network Configuration
Presentation transcript:

Linux Network Configuration Linux System Administration Linux Network Configuration /etc/resolv.conf Tells the kernel which name server should be queried when a program asks to "resolve" an IP Address. nameserver 172.31.1.1 search cc.iitk.ac.in iitk.ac.in /etc/sysconfig/network Indicates networking is enabled (NETWORKING=yes) and provides information on hostname, gateway and nis domain. NETWORKING=yes HOSTNAME=webhome.cc.iitk.ac.in NISDOMAIN=cc GATEWAY=172.31.1.250

Linux Network Configuration Linux System Administration Linux Network Configuration /etc/sysconfig/network-scripts/ifcfg-eth0 Network configurations like boot protocol (static/dhcp), ip address, netmask, network address, broadcast address etc. DEVICE=eth0 ONBOOT=yes BOOTPROTO=static IPADDR=172.31.1.40 NETMASK=255.255.0.0 BROADCAST=172.31.255.255 NETWORK=172.31.0.0 GATEWAY=172.31.1.250

Scheduling Jobs: Cron Linux System Administration Cron is a program that enables you to execute a command, or a script with a sequence of commands, at a specified date, time or at set intervals. Add the job script in /etc/cron.hourly or /etc/cron.daily or /etc/cron.weekly or /etc/cron.monthly to schedule a job

Scheduling Jobs: Cron Linux System Administration Make an entry in /etc/crontab file to schedule a job (crontab -e) the format is * * * * * command_to_execute each star denotes Minute Hour Day_of_Month Month Day_of_Week Minute = Minute of the hour, 00 to 59. * Will indicate every minute Hour = Hour of the day in 24-hour format, 00 to 23. * Will indicate every hour Day = Day of the month, 1 to 31. * Will indicate every day Month = Month of the year, 1 to 12. * Will indicate every month Day = Day of the week, 3 chars - sun, mon, tue, or numeric (0=sun, 1=mon etc).... * Will indicate every day Task = The command you want to execute

Backup & Restore Linux System Administration Backup the user area or configuration file Use tar to take backup on a different disk or tape Backup can be scheduled using cron Backup: tar –zcvf <tar filename> <Directory Tree to be backedup> Restore: tar –zxvf <tar filename> <file to be recovered> Backup should be occasionally checked by restoring it Backup Policy: Full Backup every weekly/fortnightly and incremental backup every day