Skip to content

Commit 60d2b2f

Browse files
committed
🔄 synced local 'docs' with remote 'docs'
1 parent 216dc18 commit 60d2b2f

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

docs/grSim.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# grSim
2+
3+

docs/network.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# ネットワーク設定
2+
3+
## 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+
via: 192.168.1.1
31+
32+
```

0 commit comments

Comments
 (0)