2
0

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.

linux ipアドレスを追加する

Posted at

#Linux環境においてIPアドレスを追加する

##今回IPを追加する目的
標準ではLinuxマシンには一つのネットワークインターフェースに一つのIPアドレスが割り当てられている.
今回は弊ラボ内の別のネットワークグループに所属するマシンたちにwakeonlanコマンドを使用するためにIPアドレスを追加した.

##現在のIPの状態を確認

ip a

と打つと

1: enp2s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether hogehoge
    inet hogehoge brd hogehoge scope global enp2s0
       valid_lft forever preferred_lft forever
    inet6 hogehoge scope link
       valid_lft forever preferred_lft forever

といような出力がされるであろう.

このenp2s0が今回のIPの追加先である(ここは人によって異なるネットワークインターフェースの名前)

##IPの追加

 ip addr add xxx.xxx.x.xx/xx dev enp2s0

追加したいIPアドレス(xは任意のIPの意)と追加先のネットワークインターフェースを指示.

##IPの削除

 ip addr del xxx.xxx.x.xx/xx dev enp2s0

addをdelに変えるだけ.

####注意
再起動などをすると追加したIPが消えてしまうので,何かおかしいなと思ったらIPの状態を確認!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?