diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-03-30 21:19:59 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-31 23:42:24 +0200 |
commit | 3b201da4732ea6dd51e310d4c6a8d45a2f8a2901 (patch) | |
tree | 8499674b7d6bec8013b95e99f32d9c41e5a1f277 /Meta | |
parent | aa6547492e62802a7782bc12545fa7cc26331218 (diff) | |
download | serenity-3b201da4732ea6dd51e310d4c6a8d45a2f8a2901.zip |
Utilities: Add simple traceroute utility
This utility traces the route packets take to a user specified host.
QEMU user networking (the type of networking we currently have setup)
does not support sending "real" raw IPv4 packets, and as such we cant
specify a custom TTL value. As a result, this utility will only work
on real hardware, qemu setup with tun networking (requires root) and
other hypervisors that support bridged adapters (VirtualBox/VMWare).
Diffstat (limited to 'Meta')
-rwxr-xr-x | Meta/build-root-filesystem.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index 08252e0136..71785bb513 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -56,6 +56,7 @@ chmod 0400 mnt/boot/Kernel chmod 4750 mnt/bin/su chmod 4755 mnt/bin/passwd chmod 4755 mnt/bin/ping +chmod 4755 mnt/bin/traceroute chmod 4750 mnt/bin/reboot chmod 4750 mnt/bin/shutdown chmod 4750 mnt/bin/keymap |