SSH Tunneling

If you are able to connect to a ssh server, you can connect to the whole world. How does that work? ssh -N user@remote.ssh -L 6667/target.host/6667 The command in pieces: -N circumvents that a shell gets spawned. user is the user on our remote ssh server. -L is the command for the tunnel. Its three parameters are Local […]

Read only root

Meiner Erfahrung nach muss das Filesystem, mit Ausnahmen von Logs und anderen Kleinigkeiten selten verändert werden. Aus diesem Grund sehe ich mir an, wie man / read only behandelt. Was sind Gründe um dies zu tun? LiveCDs Erhöhen der Systemsicherheit Schadensbegrenzung bei Crashes Root über NFS ‘verteilen’

1 5 6 7