@3fv/dynamic-dns-r53 中文文档教程

发布于 4年前 浏览 23 更新于 3年前

Dynamic DNS with Route 53

Installation

npm install -g @3fv/dynamic-dns-r53 或者 yarn add global @3fv/dynamic-dns-r53

Run in Foreground or as a Service

以下将UPSERT 一个名为officeA DNS 记录 在由区域 ID Z38974KCMD0AO6 标识的 Route53 域中 并将永远运行更新变化。

# Run in foreground
dynamic-dns-r53 -v -a office -z Z38974KCMD0AO6 -p 3fv -d

# Once you know it works, use PM2 to run as a service
npm i -g pm2

# Configure PM2 to run at boot
pm2 startup

# Create the service
pm2 start --name dynamic-dns-r53 dynamic-dns-r53 -- \
  -v -a office -z Z38974KCMD0AO6 -p 3fv -d

假设检测到更改,您将看到如下输出:

 15:28:28 [INFO] (dynamic-dns-r53) Starting IP setup  
 15:28:28 [INFO] (dynamic-dns-r53) Using FQDN: office.3form.ventures.  
 15:28:28 [INFO] (dynamic-dns-r53) Getting IP Address  
 15:28:28 [INFO] (dynamic-dns-r53) Your IP is  '173.68.74.234'  173.68.74.234
 15:28:28 [INFO] (dynamic-dns-r53) Update completed  

请记住,您可能仍需要为路由器配置 端口映射等

Options

工具的所有命令行选项

Options:
  --version          Show version number                               [boolean]
  --verbose          Set log level to `debug`         [boolean] [default: false]
  --zoneId, -z       Route53 Zone ID.  
                     An example is Z38974KCMD0AO6            [string] [required]
  --aRecordName, -a  Name of A record to create or update    [string] [required]
  --awsRegion, -r    AWS Region                  [string] [default: "us-east-1"]
  --awsProfile, -p   AWS Profile to use for creds       [string] [default: null]
  --daemon, -d       Run forever and update when IP changes
                                                      [boolean] [default: false]
  --help             Show help                                         [boolean]

Credits

@jglanz - Jonathan Glanz

Dynamic DNS with Route 53

Installation

npm install -g @3fv/dynamic-dns-r53 or yarn add global @3fv/dynamic-dns-r53

Run in Foreground or as a Service

The following will UPSERT an A DNS record named office in the Route53 domain identified by zone id Z38974KCMD0AO6 and will run forever updating on change.

# Run in foreground
dynamic-dns-r53 -v -a office -z Z38974KCMD0AO6 -p 3fv -d

# Once you know it works, use PM2 to run as a service
npm i -g pm2

# Configure PM2 to run at boot
pm2 startup

# Create the service
pm2 start --name dynamic-dns-r53 dynamic-dns-r53 -- \
  -v -a office -z Z38974KCMD0AO6 -p 3fv -d

Assuming a change is detected, you will see output like this:

 15:28:28 [INFO] (dynamic-dns-r53) Starting IP setup  
 15:28:28 [INFO] (dynamic-dns-r53) Using FQDN: office.3form.ventures.  
 15:28:28 [INFO] (dynamic-dns-r53) Getting IP Address  
 15:28:28 [INFO] (dynamic-dns-r53) Your IP is  '173.68.74.234'  173.68.74.234
 15:28:28 [INFO] (dynamic-dns-r53) Update completed  

Remember, you likely still need to configure your router for port mapping, etc.

Options

All the command line options for the tool

Options:
  --version          Show version number                               [boolean]
  --verbose          Set log level to `debug`         [boolean] [default: false]
  --zoneId, -z       Route53 Zone ID.  
                     An example is Z38974KCMD0AO6            [string] [required]
  --aRecordName, -a  Name of A record to create or update    [string] [required]
  --awsRegion, -r    AWS Region                  [string] [default: "us-east-1"]
  --awsProfile, -p   AWS Profile to use for creds       [string] [default: null]
  --daemon, -d       Run forever and update when IP changes
                                                      [boolean] [default: false]
  --help             Show help                                         [boolean]

Credits

@jglanz - Jonathan Glanz

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文