5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VPN経由でRDSへ接続する場合に考えること

Posted at

今日はやっつけメモ。
VPN経由、特に vyatta などを使って独自に VPN 接続している場合で RDS との接続が切られる、もしくは反応がないことがあったら下記の内容を確認。

前提

・RDS は ICMP に応答をしない。
 → そのため、Path MTU Discovery を利用して MSS 値 を調整することができない。
・通常の AWS VPN では ルータ側で適切にパケットの分割が行われるよう。


対応

1.クライアントの MTU 調整

現在値確認
$ifconfig eth0 ← 対象インターフェース
eth0 Link encap:Ethernet HWaddr 02:1C:A4:AB:D7:15
inet addr:172.31.. Bcast:172.31.1**.** Mask:255.255.240.0
inet6 addr: fe80::1c:a4ff:btaa:d713/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 ← default

MTU の変更
$ifconfig eth0 mtu 1350

変更を確認
$ifconfig eth0

2.VPN ルータ側でパケットを適切に分割
vyatta のマニュアルなどを確認。


5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?