質問編集履歴
2
説明を更新
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,52 @@
|
|
1
1
|
Virtual Boxを勉強しているものです。TeraTermでVirtual BoxのKali linuxへアクセスしようとしているですが「接続が拒否されました」と
|
2
2
|
|
3
3
|
出力されてしまいます。
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
/etc/network/interfacesの中身
|
8
|
+
|
9
|
+
```ここに言語を入力
|
10
|
+
|
11
|
+
# This file describes the network interfaces available on your system
|
12
|
+
|
13
|
+
# and how to activate them. For more information, see interfaces(5).
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
source /etc/network/interfaces.d/*
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
# The loopback network interface
|
22
|
+
|
23
|
+
auto lo
|
24
|
+
|
25
|
+
iface lo inet loopback
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
#The primary network interface
|
30
|
+
|
31
|
+
allow-hotplug eth0
|
32
|
+
|
33
|
+
iface eth0 inet static
|
34
|
+
|
35
|
+
address 10.0.0.2
|
36
|
+
|
37
|
+
netmask 255.255.255.0
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
#the secondary network interface
|
42
|
+
|
43
|
+
allow-hotplug eth1
|
44
|
+
|
45
|
+
iface eth1 inet dhcp
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
```
|
4
50
|
|
5
51
|
|
6
52
|
|
1
説明を修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,6 +5,12 @@
|
|
5
5
|
|
6
6
|
|
7
7
|
kali linuxのIPアドレスはip aコマンドの「2:」で表示されたinetを設定
|
8
|
+
|
9
|
+
以下のサイトで2はNATであるということが記載されているため
|
10
|
+
|
11
|
+
https://qiita.com/miyagaw61/items/b44a89eb636d16de010c
|
12
|
+
|
13
|
+
|
8
14
|
|
9
15
|
![イメージ説明](f11a2bcadfb864ea8c576e7240111e0f.png)
|
10
16
|
|