We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 216dc18 commit 60d2b2fCopy full SHA for 60d2b2f
docs/grSim.md
@@ -0,0 +1,3 @@
1
+# grSim
2
+
3
docs/network.md
@@ -0,0 +1,32 @@
+# ネットワーク設定
+## ROS関連
4
5
+https://autowarefoundation.github.io/autoware-documentation/pr-347/installation/additional-settings-for-developers/#network-settings-for-ros-2
6
7
+### ローカルホストでマルチキャスト
8
+```bash
9
+sudo ip link set multicast on lo
10
+```
11
12
+## インターネット接続とロボット接続の共存
13
14
+ロボットのアドレスに対して静的ルーティングを設定する
15
16
+`/etc/netplan/01-network-manager-all.yaml`
17
+```yaml
18
+network:
19
+ version: 2
20
+ renderer: networkd
21
+ ethernets:
22
+ enp3s0:
23
+ addresses:
24
+ - 192.168.1.2/24
25
+ gateway4: 192.168.1.1
26
+ routes:
27
+ - to: 192.168.2.0/24
28
+ via: 192.168.1.1
29
+ - to: 192.168.3.0/24
30
31
32
0 commit comments