LoginSignup
0
0

More than 3 years have passed since last update.

webarenaでubuntu その6

Last updated at Posted at 2019-08-10

概要

webarenaでubuntu18.04やってみた。
bindやってみた。

インストール

sudo apt-get install bind

ポートの開放

udp:53,53,ip4:0.0.0.0/0

named.confの修正

    version "unknown";
    recursion no;
    allow-query { 
        any; 
    };
    listen-on port 53 {
        any;
    };
    listen-on-v6 { 
        none; 
    };

テスト

外部から、digを打つ。

dig @ip address localhost

以上。

0
0
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
0
0