STREAMS


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers STREAMS
# 1  
Old 04-06-2001
Hi Everyone
I am building some A Class HP boxes as web proxy servers, have just installed HP-UX 11.00 and am starting to configure one according to our standard build policy.

However on the A Class I just happened to place the software depot this error message keeps popping up every 2 mins:

***********************************STREAMS/UX*******************************@#%
Fri Apr 06 BST 2001 16:21:03.041842 ERROR Subsys:STREAMS Loc:00123
717 16:21:03 8822266 1 T.. 5321 30 tcp_rput_other: case T_ERROR_ACK, ERROR_prim == 1

I don't recall doing anything out of the ordinary - other than connect this and the 4 other machines I am building via the LAN console port on their rears, through a hub and into a PC where I can have 5 telnet sessions running on the same screen (saving me jumping from console to console) - is that the cause?

Any help would be appreciated, I need to get this built yesterday. LAN is ethernet by the way.

Regards

alwayslearningunix
# 2  
Old 04-10-2001
sorry...

sorry I keep replying to my own posts heh but I found out the problem. if you have a HP A Class server don't set the lan console ip and the machine ip on lan0 the same, or else this produces a conflict in STREAMS/UX whereby collisions occur. the t_error_ack means that an acknowledgement cannot be recieved from some software (sw in this case) due to collisions.

hope this saves someone some grief in the future!

thanks

Regards
alwayslearningunix
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

AWK Too many open streams to print/printf

hallow all i need your advice about this script i have script like this: INDEX=/zpool1/NFS/INDEX/${1} SCRIPT=/zpool1/NFS/script/${1} LIST=SAMPLE cd ${SCRIPT} for i in `cat ${LIST}` do GETDATE=`echo ${i}|awk '{print substr($1,9,8)}'` /usr/xpg4/bin/awk -F ":" '{close(f);f=$4}{print >>... (4 Replies)
Discussion started by: zvtral
4 Replies

2. Programming

Why must flush all line-buffered output streams?

Hi, Mentioned in Stevens & Rago "Advanced Programming in the UNIX" I don't understand why must flush all line-buffered output streams when (a)an unbuffered or (b)a line-buffered stream require data from kernel? (2 Replies)
Discussion started by: Edward114
2 Replies

3. AIX

AIX STREAMS driver question

Hi all, I have a AIX kernel STREAMS question need your help, I need to implement a firewall on AIX and get packet raw data then decide pass or drop it, I've seen similiar firewall code on HP-UX, on HP-UX, you have to implement a "dlpi STREAMS driver", and specify it as a "dlpi" driver in... (1 Reply)
Discussion started by: rocktilldie
1 Replies

4. Shell Programming and Scripting

Problem with pipes on infinite streams

Here is an example code that shows the issue I have: #!/bin/bash counter() { seq 1000 | while read NUM; do echo $NUM echo "debug: $NUM" >&2 sleep 0.1 # slow it down so we know when this loop really ends done } counter | grep --line-buffered "" | head -n1 ... (10 Replies)
Discussion started by: tokland
10 Replies

5. Programming

unbuffered streams.

#include "../ourhdr.h" int main(void) { int c; char *buf; setvbuf(stdin,buf,_IONBF,10); setvbuf(stdout,buf,_IONBF,10); while((c=getc(stdin)) != EOF) { if(putc(c,stdout) == EOF) err_sys("output... (2 Replies)
Discussion started by: gandhevinod
2 Replies

6. SCO

WARNING: No Memory for Streams (NSTRPAGES)

Anybody have a clue what might have caused the Failures under Class 6? I did a reboot and so far so good, I had been up for about 55 days prior to the reboot. I'm running SCO_SV rel 3.2v5.0.7. Steve #netstat -m streams... (1 Reply)
Discussion started by: Steve_93630
1 Replies

7. UNIX for Advanced & Expert Users

Transparent ioctls Streams calls

What are transparent ioctls messages and when and why we have to issue copyin or copyout kernel utilities with respect to ioctls calls to a Stream. (2 Replies)
Discussion started by: S.P.Prasad
2 Replies
Login or Register to Ask a Question