mirror of
https://github.com/SunnyQjm/NDNDeployment.git
synced 2026-06-03 08:16:47 +08:00
13 lines
227 B
Bash
Executable File
13 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
name=$1
|
|
network=$2
|
|
site=$3
|
|
router=$4
|
|
|
|
HOME="."
|
|
|
|
killall nlsr
|
|
$HOME/nlsr_configs/generate.sh ${name} ${network} ${site} ${router} $HOME
|
|
mv nlsr.conf /usr/local/etc/ndn/nlsr.conf
|
|
nlsr -f /usr/local/etc/ndn/nlsr.conf
|