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_ntoa(3)						     Library Functions Manual						      inet_ntoa(3)

NAME
inet_ntoa - Translates an Internet address into a dot-formatted character string LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <arpa/inet.h> char *inet_ntoa( struct in_addr net_addr ); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: inet_ntoa(): XNS4.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Defines an Internet network byte-ordered address to be converted to an equivalent character string. DESCRIPTION
The inet_ntoa() function translates an Internet network byte-ordered address into a dot-formatted character string. NOTES
[Tru64 UNIX] For inet_ntoa(), a return value points to thread-specific data, which is overwritten by any subsequent calls from the same thread. RETURN VALUES
The inet_ntoa() function returns a pointer to a dot-formatted Internet character string network address. RELATED INFORMATION
Functions: inet_addr(3), inet_lnaof(3), inet_makeaddr(3), inet_netof(3), inet_network(3) Standards: standards(5) delim off inet_ntoa(3)