» tagged pages
» logout

(Feed found, click Add Page to syndicate.) Error finding feed, please try again » Find feed title

A Blog Page allows you to add entries, for news or other time sensitive postings

(Login required to save to your tagged pages.)
(or Cancel)

Make further edits, (or Cancel)

(Login required to save to your tagged pages.)
(or Cancel)

(Editing anonymously: to be credited for your changes, login or register a new account)

Change Page Permissions? Changing these permissions will adjust who can modify this page.

Anonymous (change)
(change)
(or Cancel)
Upload an image from your computer:
or Copy an image from a URL:
or Erase the current icon:
Icon Preview:

or Cancel

Erase through? The contents of through page and all pages directly attached to through will be erased.

or Cancel

(Editing anonymously: to be credited for your changes, login or register a new account)

other page actions:
through

through

Tags Applied to through

No one has tagged this page.

through Wiki Pages

What is through? Edit this page and describe it here.

sorted by: recent | see : popular
Content Tagged through

Ironing boards-steam irons-irons

ironing boards, Steam Generator Irons, Steam Cleaners,Domotec, Simac, Irons,Roomba, iRobot, Presses,vacuum cleaners, ice cream, pasta

Howto perform UDP tunneling through SSH connection

In this tutorial we will are going to provide simple procedure how to to perform UDP tunneling through an SSH connection.Say you need to forward UDP packets between two remote networks securely.

(...)
Read the rest of Howto perform UDP tunneling through SSH connection (198 words)


© Admin for Debian Admin, 2008. | Permalink | No comment

Add to del.icio.us

Search blogs linking this post with Technorati

Want more on these topics ? Browse the archive of posts filed under General, Security.

---
Related Articles at Debian Admin:

  • Fix for weak OpenSSL/OpenSSH keys in Debian
  • How to add a Disclaimer To Outgoing Emails in Postfix
  • Howto Crack Rar, 7z, and zip files in Linux
  • sshpass - Non-interactive ssh password authentication
  • How to filter spam with Spamassassin and Postfix in Debian
  • autossh - Automatically restart SSH sessions and tunnels

  • Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Mount a remote file system through ssh Using sshfs

    If you want to access a remote file system through ssh you need to install sshfs.sshfs is a filesystem client based on the SSH File Transfer Protocol. Since most SSH servers already support this protocol it is very easy to set up: i.e. on the server side there’s nothing to do. On the client side mounting the file system is as easy as logging into the server with ssh.

    sshfs Features

    • Based on FUSE (the best userspace filesystem framework for linux)
    • Multithreading: more than one request can be on it’s way to the server
    • Allowing large reads (max 64k)
    • Caching directory contents
    • sshfs runs entirely in user space. A user using sshfs does not need to deal with the root account of the remote machine. In the case of NFS, Samba etc., the admin of the remote machine has to grant access to those who will be using the services.

    Install SSHFS in Debian

    #apt-get install fuse-utils sshfs

    Next, let’s make sure the following condition is met. In the local system, type (as root)

    # modprobe fuse

    This will load the FUSE kernel module. Besides SSHFS, the FUSE module allows to do lots of other nifty tricks with file systems, such as the BitTorrent file system, the Bluetooth file system, the User-level versioning file system, the CryptoFS, the Compressed read-only file system and many others.

    Now you need to make sure you have installed ssh in your debian server using the following command

    # apt-get install ssh

    Using SSHFS

    SSHFS is very simple to use. The following command

    $ sshfs user@host: mountpoint

    This will mount the home directory of the user@host account into the local directory named mountpoint. That’s as easy as it gets. (Of course, the mountpoint directory must already exist and have the appropriate permissions).

    Example

    create the mount point

    #mkdir /mnt/remote

    #chown [user-name]:[group-name] /mnt/remote/

    Add yourself to the fuse group

    adduser [your-user] fuse

    switch to your user and mount the remote filesystem.

    sshfs remote-user@remote.server:/remote/directory /mnt/remote/

    If you want to mount a directory other than the home directory, you can specify it after the colon. Actually, a generic sshfs command looks like this:

    $ sshfs [user@]host:[dir] mountpoint [options]

    Unmount Your Directory

    If you want to unmount your directory use the following command

    fusermount -u mountpoint

    Tags: , , , , , , , , , , , ,

    Debian: Debian Admin Step By Step Tutorials and articles with screenshots

    Username:
    Password:
    (or Cancel)