testing network elements


 
Thread Tools Search this Thread
Special Forums IP Networking testing network elements
# 1  
Old 05-26-2011
testing network elements

for testing network elements which of the below is TRUE

a)Thorough understanding of RFC s/ IETF standards is enough.

b)One has to know design specifications along with standards and specification.

c)Understanding customer requirements is required for acceptance test only and not for system/functional testing.

d)One has to know design specifications along with standards and customer requirements.

e)Network Testing is subjective and depends on interpretation of Specs and inplementation
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Get unique elements from Array

I have an array code and output is below: echo $1 while read -r fline; do echo "%%%%%%$fline%%%%%" fmy_array+=("$fline") done <<< "$1" Output: CR30903 YU0007 SRIL CR30903 Yogesh SRIL %%%%%%CR30903 YU0007 SRIL%%%%% %%%%%%CR30903 Yogesh SRIL%%%%% ... (8 Replies)
Discussion started by: mohtashims
8 Replies

2. Red Hat

Network becomes slow and return fast only after restart network

Hi, I have 2 machines in production environment: 1. redhat machine for application 2. DB machine (oracle) The application doing a lot of small read&writes from and to the DB machine. The problem is that after some few hours the network from the application to the DB becomes very slow and... (4 Replies)
Discussion started by: moshesa
4 Replies

3. Shell Programming and Scripting

want know about network protocol testing

Hi guys, i want to know about network protocol testing. 1. What is network protocol testing? 2. Whats the role of network protocol tester? 3. Is there good future scope in network protocol testing field? 4. Just give me a example of protocol testing. 5. How it relates to perl or unix? Thanks... (0 Replies)
Discussion started by: rangarasan
0 Replies

4. IP Networking

ssh server is attachable from local network not from another network

hello i have a ubuntu ssh server that i can acess from any of my comnputers but only if they are on the same wireless network as the server. i tested trhis my tehtehring my samsung blackjack to my windows partition and installing openssh to windows it works when windows is on the wireless but no... (1 Reply)
Discussion started by: old noob
1 Replies

5. UNIX for Dummies Questions & Answers

Deleting Array Elements

Hi, I am writing a BASH shell script. I have an array that will contain IN ANY ORDER the following elements: DAY 8D MO NS. I would like to erase the element DAY, but since the order of the elements in the array are random, I will not know which element # DAY is (ie it's not as simple as... (3 Replies)
Discussion started by: msb65
3 Replies

6. Shell Programming and Scripting

just want certail elements

I just want to be able to take every 6 value out of an arrays can someone tell me what i'm doing wrong? the data looks like 1500680,Treverbyn,397,1,2136,4420 and i want the 2 element treverbyn out of every row #hour0.pl my $url = 'http://en19.tribalwars.net/map/tribe.txt'; use... (1 Reply)
Discussion started by: frenchface
1 Replies

7. Solaris

Testing physical network connection

How do you test the physical network connection of an interface in solaris. I know that if you have an active connection and the cable gets yanked, you can look in the messages file to check for link failure messages. But is there any better way to see if you have good layer 2 connectivity? (1 Reply)
Discussion started by: tjlst15
1 Replies
Login or Register to Ask a Question
inet_addr(3)						     Library Functions Manual						      inet_addr(3)

NAME
inet_addr - Translates an Internet network address string to an Internet address integer LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <arpa/inet.h> in_addr_t inet_addr( const char *string) ; STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: inet_addr(): XNS4.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Defines an Internet dot-formatted address character string of the form a.b.c.d, where a, b, c, and d may be expressed as decimal, octal, or hexadecimal integers in the C idiom. DESCRIPTION
The inet_addr() function translates a dot-formatted Internet character address string to an Internet address integer. The Internet address integer is returned as a network byte-ordered integer. Values specified using dot notation take on one of the following forms: When all four parts are specified, each is interpreted as a byte of data and assigned, from left to right, to the four bytes of an Internet address. When three parts are specified, the last part is inter- preted as a 16-bit quantity and placed in the rightmost two bytes of the network address. This format is convenient for specifying Class B network addresses as 128.net.host. When two parts are specified, the last part is interpreted as a 24-bit quantity and placed in the rightmost three bytes of the network address. This format is convenient for specifying Class A network addresses as net.host. When only one part is specified, the value is stored directly in the network address without any byte rearrangement. All numbers supplied as parts in dot notation can be decimal, octal, or hexadecimal, as specified in the ISO C standard. A leading 0x or 0X implies hexadecimal and a leading 0 implies octal. Otherwise, the number is interpreted as decimal. NOTES
The dot-formatted network-address a.b.c.d is returned as the machine integer dcba. RETURN VALUES
Upon successful completion, the inet_addr() function returns an equivalent network byte-ordered address integer. Otherwise, it returns (in_addr_t)-1. ERRORS
Current industry standards for inet_addr() do not define error values. RELATED INFORMATION
Functions: inet_netof(3), inet_lnaof(3), inet_makeaddr(3), inet_network(3), inet_ntoa(3) Standards: standards(5) Network Programmer's Guide delim off inet_addr(3)