Using ipfw I'm configuring pipes, but not actually adding/binding them to a port. For example:
ipfw pipe 1 config bw 100KByte/s
ipfw pipe 2 config bw 200KByte/s
Above I've configured pipes 1 and 2 if not mistaken. Unfortunately, if I run:
ipfw pipe show
I get no output. Except if I actually "ipfw add" the pipes to a rule, then I can see what their configuration is.
The reason I'm asking this question is I'd like to write a script to create pipes but check to see if there are any pipes already configured so I don't overwrite them with my own pipes.
ipfw pipe show. – Chris S♦ Jul 9 '10 at 1:40ipfw pipe showafter something likeipfw pipe 1 config bw 100KByte/sproduces no output for me until I do something likeipfw add pipe ...EDIT: I'm looking for pre-existing pipe configurations basically. I could very well be doing it wrong. – Benjamin Truyman Jul 9 '10 at 1:58