fff-gateway: Add mtr package

Submitted by Fabian Blaese on July 6, 2020, 11:15 a.m.

Details

Message ID 20200706111533.2921452-1-fabian@blaese.de
State Accepted
Headers show

Commit Message

Fabian Blaese July 6, 2020, 11:15 a.m.
mtr can be a very helpful tool when debugging unstable
networks. The tool is able to list packet loss to all
routers to a destination in a nice console-based interface.

Signed-off-by: Fabian Bläse <fabian@blaese.de>
---
 buildscript                           | 2 +-
 src/packages/fff/fff-gateway/Makefile | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

Patch hide | download patch | download mbox

diff --git a/buildscript b/buildscript
index 27386d4..46bf314 100755
--- a/buildscript
+++ b/buildscript
@@ -24,7 +24,7 @@  PACKAGEURL="https://git.openwrt.org/feed/packages.git"
 OPENWRT=(openwrt
          $PACKAGEURL
          $PACKAGEREV)
-OPENWRT_PKGS="gpioctl-sysfs libugpio fastd haserl micrond"
+OPENWRT_PKGS="gpioctl-sysfs libugpio fastd haserl micrond mtr"
 
 ## Be careful: FFF uses COMPAT_VERSION 15 as default at the moment.
 ## See http://www.open-mesh.org/projects/batman-adv/wiki/Compatversion
diff --git a/src/packages/fff/fff-gateway/Makefile b/src/packages/fff/fff-gateway/Makefile
index 1d25600..528a795 100644
--- a/src/packages/fff/fff-gateway/Makefile
+++ b/src/packages/fff/fff-gateway/Makefile
@@ -32,6 +32,7 @@  define Package/fff-gateway
 	         +iptables-mod-filter \
 	         +iptables-mod-ipopt \
 	         +iptables-mod-conntrack-extra \
+	         +mtr \
 	         +tcpdump \
 	         +vxlan
 endef

Comments

Tim Niemeyer July 7, 2020, 3:17 p.m.
Moin

Am Montag, den 06.07.2020, 13:15 +0200 schrieb Fabian Bläse:
> mtr can be a very helpful tool when debugging unstable
> networks. The tool is able to list packet loss to all
> routers to a destination in a nice console-based interface.
> 
> Signed-off-by: Fabian Bläse <fabian@blaese.de>
Reviewed-by: Tim Niemeyer <tim@tn-x.org>

Tim

> ---
>  buildscript                           | 2 +-
>  src/packages/fff/fff-gateway/Makefile | 1 +
>  2 files changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/buildscript b/buildscript
> index 27386d4..46bf314 100755
> --- a/buildscript
> +++ b/buildscript
> @@ -24,7 +24,7 @@ PACKAGEURL="
> https://git.openwrt.org/feed/packages.git"
>  OPENWRT=(openwrt
>           $PACKAGEURL
>           $PACKAGEREV)
> -OPENWRT_PKGS="gpioctl-sysfs libugpio fastd haserl micrond"
> +OPENWRT_PKGS="gpioctl-sysfs libugpio fastd haserl micrond mtr"
>  
>  ## Be careful: FFF uses COMPAT_VERSION 15 as default at the moment.
>  ## See 
> http://www.open-mesh.org/projects/batman-adv/wiki/Compatversion
> diff --git a/src/packages/fff/fff-gateway/Makefile
> b/src/packages/fff/fff-gateway/Makefile
> index 1d25600..528a795 100644
> --- a/src/packages/fff/fff-gateway/Makefile
> +++ b/src/packages/fff/fff-gateway/Makefile
> @@ -32,6 +32,7 @@ define Package/fff-gateway
>  	         +iptables-mod-filter \
>  	         +iptables-mod-ipopt \
>  	         +iptables-mod-conntrack-extra \
> +	         +mtr \
>  	         +tcpdump \
>  	         +vxlan
>  endef
Robert Langhammer July 8, 2020, 2:55 p.m.
Hi,

nettes Tool!

Reviewed-by: Robert Langhammer <rlanghammer@web.de>

Am 06.07.20 um 13:15 schrieb Fabian Bläse:
> mtr can be a very helpful tool when debugging unstable
> networks. The tool is able to list packet loss to all
> routers to a destination in a nice console-based interface.
>
> Signed-off-by: Fabian Bläse <fabian@blaese.de>
> ---
>  buildscript                           | 2 +-
>  src/packages/fff/fff-gateway/Makefile | 1 +
>  2 files changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/buildscript b/buildscript
> index 27386d4..46bf314 100755
> --- a/buildscript
> +++ b/buildscript
> @@ -24,7 +24,7 @@ PACKAGEURL="https://git.openwrt.org/feed/packages.git"
>  OPENWRT=(openwrt
>           $PACKAGEURL
>           $PACKAGEREV)
> -OPENWRT_PKGS="gpioctl-sysfs libugpio fastd haserl micrond"
> +OPENWRT_PKGS="gpioctl-sysfs libugpio fastd haserl micrond mtr"
>
>  ## Be careful: FFF uses COMPAT_VERSION 15 as default at the moment.
>  ## See http://www.open-mesh.org/projects/batman-adv/wiki/Compatversion
> diff --git a/src/packages/fff/fff-gateway/Makefile b/src/packages/fff/fff-gateway/Makefile
> index 1d25600..528a795 100644
> --- a/src/packages/fff/fff-gateway/Makefile
> +++ b/src/packages/fff/fff-gateway/Makefile
> @@ -32,6 +32,7 @@ define Package/fff-gateway
>  	         +iptables-mod-filter \
>  	         +iptables-mod-ipopt \
>  	         +iptables-mod-conntrack-extra \
> +	         +mtr \
>  	         +tcpdump \
>  	         +vxlan
>  endef
Fabian Blaese July 14, 2020, 12:28 p.m.
applied.