How to control outbound traffic?

Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default How to control outbound traffic?

    Hi all,

    We are setting up a test environment. Part of that test environment
    includes four Oracle instances on a single machine (running Solaris
    8). There is a quad ethernet NIC in the machine, which is set to four
    different addresses. The main client to this machine is an AIX server
    running a piece of middleware, using a plain vanilla SQL*Net client.

    It is, of course, trivial to set tnsnames.ora to access each instance
    by a particular IP address. What we are trying to figure out is how
    to make the instance reply via the given address. We can see from
    netstat that the connection is made via the proper address; but does
    that automatically mean the SQL*Net session will use the given IP for
    outbound traffic?

    TIA -

    Kind regards,

    jh
    Jared Guest

  2. Similar Questions and Discussions

    1. Outbound Notebook 2030S Driver Disk
      Hello, Anybody out there still have driver disk(s) for this old 68k Mac clone? Maybe even the most recent? (1.3.3 I think) Is there any place on...
    2. How to control mail traffic on Coldfusion
      I am using ColdFusion 6.1 and Windows Server 2003. My ISP called to say my web server was sending a "boat load of traffic" to his email server....
    3. Not Much Traffic Here
      On Thu, 03 Nov 2005 14:57:14 +0100, ubuntudude <ubuntudude@foo.bar> wrote: Ubuntu seems to show up a lot on websites lately. They must be...
    4. too much traffic on lo0
      Tom wrote: What do you mean "too much traffic"? Is this causing you a problem, and is so, what? on Sun It didn't show *any* traffic on the...
    5. Outbound HTTP Connection Bottleneck
      I'm consuming a web service via the internet from a web service client proxy running on my webserver. The web service provides data for individual...
  3. #2

    Default Re: How to control outbound traffic?

    Jared wrote:
    > Hi all,
    >
    > We are setting up a test environment. Part of that test environment
    > includes four Oracle instances on a single machine (running Solaris
    > 8). There is a quad ethernet NIC in the machine, which is set to four
    > different addresses. The main client to this machine is an AIX server
    > running a piece of middleware, using a plain vanilla SQL*Net client.
    >
    > It is, of course, trivial to set tnsnames.ora to access each instance
    > by a particular IP address. What we are trying to figure out is how
    > to make the instance reply via the given address. We can see from
    > netstat that the connection is made via the proper address; but does
    > that automatically mean the SQL*Net session will use the given IP for
    > outbound traffic?
    >
    > TIA -
    >
    > Kind regards,
    >
    > jh
    Jared -

    Traffic outbound from the database goes out the same socket the
    connection was established on and so goes out the same interface/address
    the socket was created on (or so I've read - testing it would say for
    sure). The listener only does *port* redirection - when on the same
    server as the database. It accomplishes this by directly handing off
    its socket "handle" to the server process it spawns. The game changes
    under RAC, when you're using a remote listener (in the case of
    server-side load balancing). The listener in this case sends a
    "redirect" packet to the client, which then disconnects and reconnects
    to the address and port specified in the packet.

    HTH,

    TD
    Tony Dare Guest

  4. #3

    Default Re: How to control outbound traffic?

    Thank you, Tony. That makes a lot of sense from a Unix standpoint.

    Tony Dare <tonydare@yahoo.com> wrote in message news:<oItDc.7$X01.476@news.oracle.com>...
    > Traffic outbound from the database goes out the same socket the
    > connection was established on and so goes out the same interface/address
    > the socket was created on (or so I've read - testing it would say for
    > sure). The listener only does *port* redirection - when on the same
    > server as the database. It accomplishes this by directly handing off
    > its socket "handle" to the server process it spawns. The game changes
    > under RAC, when you're using a remote listener (in the case of
    > server-side load balancing). The listener in this case sends a
    > "redirect" packet to the client, which then disconnects and reconnects
    > to the address and port specified in the packet.
    Jared 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