diff --git a/README.md b/README.md index 8a3e4acd..9a259fb4 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ What can we do? We can detect hosts in our own network with a large amount of pa - [Manual install on FreeBSD and Dragonfly BSD](docs/FreeBSD_INSTALL.md) - [Manual install on Mac OS X](docs/MAC_OS_INSTALL.md) - [Manual install on Slackware](docs/SLACKWARE_INSTALL.md) +- [Manual install for VyOS](docs/VyOS_INSTALL.md) - You could order VPS with preinstalled FastNetMon: http://vps2fast.com/vds/ [![Build Status](https://travis-ci.org/FastVPSEestiOu/fastnetmon.svg?branch=master)](https://travis-ci.org/FastVPSEestiOu/fastnetmon) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/FastVPSEestiOu/fastnetmon?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) diff --git a/docs/VyOS_INSTALL.md b/docs/VyOS_INSTALL.md new file mode 100644 index 00000000..7827ca3a --- /dev/null +++ b/docs/VyOS_INSTALL.md @@ -0,0 +1,25 @@ +# VyOS install reference + +First of all you should enable Debian Squeeze stable and lts repos on VyOS box: +```bash +configure +# squeeze +set system package repository squeeze components 'main contrib non-free' +set system package repository squeeze distribution 'squeeze' +set system package repository squeeze url 'http://mirrors.kernel.org/debian' + +# lts +set system package repository squeeze-lts components 'main contrib non-free' +set system package repository squeeze-lts distribution 'squeeze-lts' +set system package repository squeeze-lts url 'http://mirrors.kernel.org/debian' +commit +save +``` + +Update packages list:```sudo apt-get update``` + +Run installer with curl: +```bash +curl https://raw.githubusercontent.com/FastVPSEestiOu/fastnetmon/master/src/fastnetmon_install.pl > fastnetmon_install.pl +sudo perl fastnetmon_install.pl +```