binding ftp to an ip/interface

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

  1. #1

    Default binding ftp to an ip/interface

    Hi
    Im running a server with 5 different network interfaces connected to
    different switches (solaris 8). It has the tcp wrappered version of
    ftp on it. I would like to bind the ftp service to one ip
    address/interface so its not listening on all the other ones for
    security. Could someone tell me if this is easily done or if I need to
    use a different ftp package.
    Thanks
    chris-c Guest

  2. Similar Questions and Discussions

    1. #39403 [NEW]: A class can't implements interface implemented by implemented interface/classes
      From: baldurien at bbnwn dot eu Operating system: Irrelevant PHP version: 5.2.0 PHP Bug Type: Feature/Change Request Bug...
    2. Complex data binding question, binding child objects of a custom collection.
      I have a custom collection of objects, each of which includes a child object called MyUserOpener. In declarative binding, I can bind this property...
    3. Interface
      Hi there, I have made an interface in Photoshop and imported it into Director, it contains a title bar with text on it. What I am trying to achieve...
    4. value binding and function binding
      Hi I was just wandering through some lisp code and I saw this: (let ((x 1)) (flet ((x (y) (+ x y))) (x x))) (I'm not sure if the indentation...
    5. Does Interface Size Matter? Is my interface too complex?
      Hi all, Does Interface Size Matter? Is my interface too complex? I volunteered to design a couple of web pages, but since we don't have a...
  3. #2

    Default Re: binding ftp to an ip/interface

    chris-c <cconnell_1@lycos.com> wrote:
    > Im running a server with 5 different network interfaces
    <snip>
    > I would like to bind the ftp service to one ip
    > address/interface
    You can use ipfilter to allow only one interface to use ftp,
    this will drop or reject any packets coming from other interfaces
    and effectively allowing only one of them to connect using ftp
    or whatever, or you can use the tcpwrapper to refuse connection
    from all networks but the one connected to the interface you
    want to use, this only if you can distinguish them of course.

    Davide

    --
    | No problem is so formidable that you can't just walk away from it.
    |
    |
    |
    Davide Bianchi Guest

  4. #3

    Default Re: binding ftp to an ip/interface

    On 17 Apr 2004 01:12:58 -0700, chris-c
    <cconnell_1@lycos.com> wrote:
    > Hi
    > Im running a server with 5 different network interfaces connected to
    > different switches (solaris 8). It has the tcp wrappered version of
    > ftp on it. I would like to bind the ftp service to one ip
    > address/interface so its not listening on all the other ones for
    > security. Could someone tell me if this is easily done or if I need to
    > use a different ftp package.
    > Thanks
    If it uses tcp-wrappers, you can make appropriate entries in
    /etc/hosts.allow or /etc/hosts.deny.

    --
    Giraffe: a ruminant with a view.
    Bill Marcum 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