IP farwarding in Solaris 9?.... Help!

Ask a Question related to Sun Solaris, Design and Development.

  1. #1

    Default IP farwarding in Solaris 9?.... Help!

    Hi All,

    I need to setup a system like this.

    I have 2 servers one with IP 192.168.0.1 (Server 1) and the other with
    192.168.0.2 (Server 2). I am running some servers in Server 2 (eg. HTTP
    server). My service domain name, "testserver.com" points to Server 1. Both
    servers run Solaris 9.

    Can I install a IP Forwarder or Router in Server 1, so that any TCP packet
    (may be for selected ports) comes to Server 1 (192.168.0.1 / testserver.com)
    will forward to Server 2 (192.168.0.2) and access the services on Server 2?

    Please help me as soon as possible.

    Thanks in advance!
    Eranga


    Eranga Udesh Guest

  2. Similar Questions and Discussions

    1. (Help) FTP fails in Solaris 9 but not in Solaris 2.6
      Our Sun E3500 server has been upgraded from Solaris 2.6 (105181-17 ) to Solaris 9 (112233-11). There are no changes in any of the FTP binaries. We...
    2. solaris 10 zone / container question (or Solaris 9)
      I begin to look at zoning in Solaris 10. I have not configured zones yet but need some answers quite quick (tomorrow :-() and hope someone can help...
    3. Question: C2 Security Configuration for general Unix and Solaris/Trusted Solaris (Auditing)
      While reviewing the DoD 5200.28-STD "DEPARTMENT OF DEFENSE TRUSTED COMPUTER SYSTEM EVALUATION CRITERIA" document and looking over "Security...
    4. RPC unknown host with Solaris 9 (not on Solaris 8)
      I am trying to see if a Solaris 8 application will work on Solaris 9. While it mostly works, I am still running into issues with RPC. I get error...
    5. upgrading solaris 2.6 to Solaris 8
      Hello, Last day I upgraded my solaris 2.6 to Solaris 8 on a E220R. After reboot the system boots with solaris 8 but ....it got stucks at...
  3. #2

    Default Re: IP farwarding in Solaris 9?.... Help!

    "Eranga Udesh" <eran@omnibis.com> wrote in message news:<3f1ff5ea@shknews01>...
    > Can I install a IP Forwarder or Router in Server 1, so that any TCP packet
    > (may be for selected ports) comes to Server 1 (192.168.0.1 / testserver.com)
    > will forward to Server 2 (192.168.0.2) and access the services on Server 2?
    check out:
    [url]http://sourceforge.net/projects/simpleproxy/[/url]

    once installed, then just set up whatever ports you want to forward.
    IE:

    /path/to/simpleproxy -d -L 80 -R new.foo.com:80 -p
    /var/run/simpleproxy.pid


    Of, if you really just want to ssmush (yes, that's a technical term)
    the two servers together, you could just bring down the IP on server 1
    and bring it up on server 2. IE:

    1. change IP on server 1 (or turn it off)

    2. bring server 1's IP up on server 2. IE:

    ifconfig eri0 addif 192.168.0.1 netmask ###.###.###.### broadcast
    ###.###.###.### up

    you'll need to change the eri0 to whatever your interface name is (do
    an ifconfig -a to check). broadcast and netmask are the same as the
    current settings.

    -r
    Robb Ottenhoff 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