Question about command "netstat" for AIX

Ask a Question related to AIX, Design and Development.

  1. #1

    Default Question about command "netstat" for AIX

    When I try:

    # netstat -I en0 1

    It will not be stopped until I press ctrl-C to stop it.

    How can I set the no. of counts for command "netstat" ?
    Let say it will have 5 counts after interval set to 1 sec.

    - DT



    DT Guest

  2. Similar Questions and Discussions

    1. SMTP: "to" or/and "recipient" question.
      Dear Experts, I am looking at codes somebody wrote long ago and found strange codes. As I know the "to" method is just a synonym for the...
    2. What is the difference between command "PS" and "PS -aux"
      Hi, I am new to Unix. I hope this is the right group for me to learn about it. Question: when I run PS command, I only have a few current process....
    3. "Weld" command in "Corel Draw"
      Hi there: I'm new to Illustrator but have used Corel Draw in the past. In Corel Draw there was a "Weld" command. What this did was create a drawing...
    4. Question about "Public Sub" vs "Private Sub" vs "Sub"
      In my INCLUDE.INC file I have noticed that I can create subs three ways... Public Sub Test1(x) response.write(x) End Sub Private Sub Test2(x)...
    5. copying value of DDL in a Datagrid "pre-edit command" to value in "post edit command"
      Hi all! I have Datagrid. Within that datagrid I have a drop down list that I set up some values in (a "collection") I set up an edit command...
  3. #2

    Default Re: Question about command "netstat" for AIX

    DT wrote:
    > When I try:
    >
    > # netstat -I en0 1
    >
    > It will not be stopped until I press ctrl-C to stop it.
    >
    > How can I set the no. of counts for command "netstat" ?
    > Let say it will have 5 counts after interval set to 1 sec.
    >
    > - DT
    >
    >
    >
    i=5; while [ $i != 0 ]; do netstat -I en0; sleep 1; let "i = i - 1"; done

    -- Jason

    Jason Mather Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139