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

Slides:



Advertisements
Similar presentations
Module 13: Implementing ISA Server 2004 Enterprise Edition: Site-to-Site VPN Scenario.
Advertisements

Static Routing Exercise AFNOG 2003/ Track 2 # 1 Static Routing Exercise u Unix network interface configuration u Cisco network interface configuration.
 WAN uses Serial ports  Ethernet Ports:  Straight through  Cross over.
Copyright © 2014 EMC Corporation. All Rights Reserved. Basic Network Configuration for File Upon completion of this module, you should be able to: Configure.
Static Routing Exercise. What will the exercise involve?  Unix network interface configuration  Cisco network interface configuration  Static routes.
Module 4: Configuring Network Connectivity
Configuring and Troubleshooting Network Connections
DHCP -Ameeta and Haripriya -cmsc 691x. DHCP ► Dynamic Host Configuration Protocol ► It controls vital networking parameters of hosts with the help of.
1 Dynamic DNS. 2 Module - Dynamic DNS ♦ Overview The domain names and IP addresses of hosts and the devices may change for many reasons. This module focuses.
Module 4: Configuring Network Connectivity
Module 5: Configuring Access for Remote Clients and Networks.
Firewall Configuration Strategies
Networking an Integrators Tool Kit By Wyatt See. TASK CON STANDARD Bla – Understand IP addressing – Use IPCONFIG – Identify common causes of network failures.
Module 10: Routing Fundamentals and Subnets Small Router Purchase Subnetting Example a Basic Subnetting b Subnetting a Class A Network.
Linux+ Guide to Linux Certification, Second Edition Chapter 14 Network Configuration.
Network Management And Debugging
Static Route. Identify Default gateway What is the default gateway for PC1 PC2 r1 r2 PC1PC2.
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)
Hands-On Microsoft Windows Server 2008 Chapter 8 Managing Windows Server 2008 Network Services.
Remote Accessing Your Home Computer Using VNC and a Dynamic DNS Name.
CIS 193A – Lesson10 Protecting Your Network. CIS 193A – Lesson10 Focus Question What information contained in packets can be used as matching criteria.
SUSE Linux Enterprise Server Administration (Course 3037) Chapter 7 Connect the SUSE Linux Enterprise Server to the Network.
Day15 IP Space/Setup. IP Suite of protocols –TCP –UDP –ICMP –GRE… Gives us many benefits –Routing of packets over internet –Fragmentation/Reassembly of.
Module 3: Planning and Troubleshooting Routing and Switching.
Making connections Connecting a computer to a LAN donna Bair-Mundy.
ARP Scenarios CIS 81 and CST 311 Rick Graziani Fall 2005.
Introduction to Networking Concepts. Introducing TCP/IP Addressing Network address – common portion of the IP address shared by all hosts on a subnet/network.
Connecting to Network. ♦ Overview ► A network connection is required to communicate with other computers when they are in a network. Network interface.
Sybex CCENT Chapter 8: IP Routing Instructor & Todd Lammle.
Session 9 Windows Platform Dina Alkhoudari. Learning Objectives Understanding DHCP Address Assignment Understanding Address Leases Understanding DHCP.
Module 4: Fundamentals of Communication Technologies.
Links and LANs Link between two computers via cross cable The most simple way to connect two hosts is to link the two hosts with a cross cable.
Linux+ Guide to Linux Certification, Second Edition Chapter 14 Network Configuration.
Day 14 Introduction to Networking. Unix Networking Unix is very frequently used as a server. –Server is a machine which “serves” some function Web Server.
1 Chapter 7: NAT in Internet and Intranet Designs Designs That Include NAT Essential NAT Design Concepts Data Protection in NAT Designs NAT Design Optimization.
1 TCP/IP, Addressing and Services S. Hussain Ali M.S. (Computer Engineering) Department of Computer Engineering King Fahd University of Petroleum and Minerals.
2010 paro, bhutan IP Basics IP/ISP Services Workshop July, 2010 Paro, Bhutan.
Module 5: Creating IPv4 Address Spaces. Overview of IP Communication Subnetting Overview Subnetting for Complex Networks.
CIS 192B – Lesson 3 Network Information Services.
Module 1: Configuring Routing by Using Routing and Remote Access.
Basic Routing Principles V1.2. Objectives Understand the function of router Know the basic conception in routing Know the working principle of router.
ECMM6018 Enterprise Networking for Electronic Commerce Tutorial 7 Dynamic Host Protocol.
Static Routing Exercise Mark Tinka & Isatou Jah. What will the exercise involve?  Unix network interface configuration  Cisco network interface configuration.
Security fundamentals Topic 10 Securing the network perimeter.
Basic Linux Router I Router, a device that... Working on OSI Layer 3 (Network Layer) Connected to more than one networks Finding.
NetTech Solutions Common Connectivity Problems Lesson Eight.
Sample DNS configurations. Example 1: Master 'master' DNS and is authoritative for this zone for example.com provides 'caching' services for all other.
LINCWorks Mesh Networking User Guide. This user guide will give a brief overview of mesh networking followed by step by step instructions for configuring.
Wireless Access Point. What is a WAP?  A Wireless access point (WAP) is a device that allows a wireless device to connect to a wired network.
Network Overview. Protocol Protocol (network protocols) - a special set of rules that define communication between two or more devices on a network.
If we don’t subnet and use as our subnet mask then we use all of our IP addresses on one network. This is not an efficient use of our Class.
Security fundamentals
Created by : Asst. Prof. Ashish Shah, J. M
Linux network troubleshooting
CompTIA Security+ Study Guide (SY0-401)
Chap-I Network and System Configuration in Linux
Internet Protocol Address
Module 3: Enabling Access to Internet Resources
Network Configuration
NextiraOne Turkey WAN Topology-Now
LINUX ADMINISTRATION
Switch Setup Connectivity to Other locations Via MPLS/LL etc
Planning and Troubleshooting Routing and Switching
Unix Linux Administration I
Chabot College ELEC Why Subnet?.
CompTIA Security+ Study Guide (SY0-401)
Cases in Subnetting.
/ / / / / /27.
AbbottLink™ - IP Address Overview
Module 12 Network Configuration
Presentation transcript:

CIS 193A – Lesson9 Network Infrastructure

CIS 193A – Lesson9 Focus Question What are three high level subnets a corporate intranet will want to support?

CIS 193A – Lesson9 A Simple Topology

CIS 193A – Lesson9 Computer Identity Hostname –/etc/hosts # IP address and FQDN –/etc/sysconfig/network # FQDN Static IP information –/etc/sysconfig/network # default gw –/etc/sysconfig/network-scripts/ifcfg-eth* –/etc/resolv.conf # domain nameserver

CIS 193A – Lesson9 Content of ifcfg-eth0 DEVICE=eth0 ONBOOT=yes BOOTPROTO=static IPADDR= NETMASK= BROADCAST=

CIS 193A – Lesson9 Setting the Default Gateway route add default gw Note that the address must be on a local network interface. GATEWAY= This variable may be set either in /etc/sysconfig/network or in the appropriate /etc/sysconfig/network-scripts/ifcfg-eth? file.

CIS 193A – Lesson9 Routing For temporary routing: –echo 1 > /proc/sys/net/ipv4/ip_forward –echo a 0 to turn off routing For permanent routing through reboots: –edit /etc/sysctl.conf and set: net.ipv4.ip_forward = 1

CIS 193A – Lesson9 Review

CIS 193A – Lesson9 Focus Question What are three high level subnets a corporate intranet will want to support? A Corporation may very well want a subnet for a branch office; it may want a public web and/or mail server on a screened subnet (DMZ); it may want a separate subnet for VPN connections from remote users, and it may want its primary intranet subnetted for different departments e.g. executive, development, support, sales, testing …