Results 1 to 4 of 4

Thread: Enable/Disable ftp in solaris 10

  1. #1
    Junior Member
    Join Date
    Feb 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default Enable/Disable ftp in solaris 10

    Dear All,

    How to Enable/Disable ftp in solaris 10

    Regards
    Kuldeep

  2. #2
    Is that all you got? rockdalinux's Avatar
    Join Date
    May 2005
    Location
    Planet Vegeta
    Posts
    984
    Thanks
    27
    Thanked 70 Times in 61 Posts
    Rep Power
    19

    Default

    Are you using in.ftpd or 3rd party FTP server? In most cases you need to use inetadm command.

    Get status of ftp service
    Code:
    inetadm | grep ftp
    Enable ftp
    Code:
    inetadm -e ftp
    Disable ftp
    Code:
    inetadm -d ftp
    More info
    Code:
    man inetadm
    man svcadm
    Rocky Jr.
    What's wrong? I hope I am not making you uncomfortable...

    Never send a boy to do a mans job.

  3. #3
    Junior Member
    Join Date
    Feb 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default Enable/Disable ftp in solaris 10

    ftp that I am using is in.ftpd

    I have tried

    Code:
    ---------
    inetadm | grep ftp
    ---------
    Enable ftp
    Code:
    ---------
    inetadm -e ftp
    ---------
    Disable ftp
    Code:
    ---------
    inetadm -d ftp
    ---------
    After enabling or disabling using the inetadm command, The command inetadm | grep ftp is showing the proper output but when I try to connect to the machine from other machine it gives

    > ftp: connect :Unknown error number

    From the same machine using ftp 0.0.0.0
    it has given
    ftp: connect: Connection refused

  4. #4
    Junior Member
    Join Date
    Feb 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default Enable/Disable FTP

    I have used
    "/usr/sbin/svcadm enable ftp"
    "/usr/sbin/svcadm disable ftp"
    To enable or disable ftp and it is working

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Redhat linux 4 / 5 disable iptables firewall
    By chiku in forum Networking, Firewalls and Security
    Replies: 1
    Last Post: 15th February 2011, 09:43 PM
  2. Linux disable network interface
    By jerry in forum Linux software
    Replies: 3
    Last Post: 31st January 2009, 09:25 PM
  3. disable sftp users
    By raudisir in forum Networking, Firewalls and Security
    Replies: 3
    Last Post: 13th May 2008, 05:06 PM
  4. Enable or disable services in Debian Linux
    By raj in forum Linux software
    Replies: 1
    Last Post: 25th January 2007, 03:00 AM
  5. Solaris newbie: How to install IOzone in Solaris
    By warren in forum Solaris/OpenSolaris
    Replies: 11
    Last Post: 28th March 2006, 05:45 PM

Posting Permissions

  • You may not post new threads
  • You may not 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