Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

Shell script help

Original Message
Name: Hugo
Date: December 12, 2007 at 07:47:15 Pacific
Subject: Shell script help
OS: Sol 9
CPU/Ram: 4GB
Model/Manufacturer: SunFire v240
Comment:
Hi.

Any one know how to extract Interface name and ip address for each working (UP) interface on Cisco device configuration? Configuration is already on flat files. Config file has many entries like one below:

interface GigabitEthernet0/0
description To site LAN
ip address 10.2.122.241 255.255.255.252
ip access-group virus-security in
duplex auto
speed auto
media-type rj45

Need to grep for each device config only interface info and ip address, as long as interface is not shutdown.

Thank you very much.


Report Offensive Message For Removal


Response Number 1
Name: Ankit Jain
Date: December 16, 2007 at 20:21:04 Pacific
Subject: Shell script help
Reply: (edit)
Try with this code

SEARCH1="interface"
SEARCH2="ip address"
FILE="path of file"

cat $FILE | \
while read line
do
INDEX1="`awk -v a="$line" -v b="$SEARCH1" 'BEGIN{print index(a,b)}'` "
INDEX2="`awk -v a="$line" -v b="$SEARCH2" 'BEGIN{print index(a,b)}'` "
if [ INDEX1 -ne 0 ] ;
then
EXTRACT1="`awk -v a="$line" 'BEGIN{print substr(a,11)}'`" #extract from line startting from 11th char(leaving interface) upto end
EXTRACT2="`awk -v a="$var" 'BEGIN{print substr(a,11)}'`"

Jain Sahab


Report Offensive Follow Up For Removal




Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: Shell script help

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software




My PC has been hijacked!

Lexmark 2600 Printer Issues

btk1w1 infected start here post

Unwanted message remians on screen

Slow boot time


The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC