質問編集履歴

3

パッケージの確認追加

2016/03/14 23:43

投稿

kurokoSin
kurokoSin

スコア133

test CHANGED
File without changes
test CHANGED
@@ -54,7 +54,65 @@
54
54
 
55
55
  #
56
56
 
57
+ # yum provides /sbin/iptables
58
+
59
+ 読み込んだプラグイン:fastestmirror
60
+
61
+ Determining fastest mirrors
62
+
63
+ * base: www.ftp.ne.jp
64
+
65
+ * extras: www.ftp.ne.jp
66
+
67
+ * updates: www.ftp.ne.jp
68
+
69
+ iptables-1.4.21-16.el7.x86_64 : Tools for managing Linux kernel packet filtering capabilities
70
+
71
+ リポジトリー : @anaconda
72
+
73
+ 一致 :
74
+
75
+ ファイル名 : /sbin/iptables
76
+
77
+ #
78
+
79
+ # rpm -q iptables
80
+
81
+ iptables-1.4.21-16.el7.x86_64
82
+
83
+ #
84
+
85
+ # yum provides /etc/sysconfig/iptables
86
+
87
+ 読み込んだプラグイン:fastestmirror
88
+
89
+ Loading mirror speeds from cached hostfile
90
+
91
+ * base: www.ftp.ne.jp
92
+
93
+ * extras: www.ftp.ne.jp
94
+
95
+ * updates: www.ftp.ne.jp
96
+
97
+ iptables-services-1.4.21-16.el7.x86_64 : iptables and ip6tables services for iptables
98
+
99
+ リポジトリー : base
100
+
101
+ 一致 :
102
+
103
+ ファイル名 : /etc/sysconfig/iptables
104
+
105
+ #
106
+
107
+ # rpm -q iptables-services
108
+
109
+ パッケージ iptables-services はインストールされていません。
110
+
111
+ #
112
+
57
- ```
113
+ ```
114
+
115
+
58
116
 
59
117
 
60
118
 

2

調査結果の追加

2016/03/14 23:43

投稿

kurokoSin
kurokoSin

スコア133

test CHANGED
File without changes
test CHANGED
@@ -158,6 +158,94 @@
158
158
 
159
159
 
160
160
 
161
+ パッケージのインストール内容の確認
162
+
163
+ ```
164
+
165
+ # head -50 anaconda-ks.cfg
166
+
167
+ #version=DEVEL
168
+
169
+ # System authorization information
170
+
171
+ auth --enableshadow --passalgo=sha512
172
+
173
+ # Use CDROM installation media
174
+
175
+ cdrom
176
+
177
+ # Use graphical install
178
+
179
+ graphical
180
+
181
+ # Run the Setup Agent on first boot
182
+
183
+ firstboot --enable
184
+
185
+ # Keyboard layouts
186
+
187
+ keyboard --vckeymap=jp --xlayouts='jp'
188
+
189
+ # System language
190
+
191
+ lang ja_JP.UTF-8
192
+
193
+
194
+
195
+ # Network information
196
+
197
+ network --bootproto=dhcp --device=enp0s3 --onboot=off --ipv6=auto
198
+
199
+ network --hostname=localhost.localdomain
200
+
201
+
202
+
203
+ # Root password
204
+
205
+ rootpw --iscrypted $6$vz1MgIngTE.aEkF6$0TU1ilFovj3cA22S2BLkzUx.b7vsn5nkJmIylAJArKX4y33Ge5qmYx3iAV1rME3CKOgjg3uY7mDXlLLCRAkcN/
206
+
207
+ # System timezone
208
+
209
+ timezone Asia/Tokyo --isUtc
210
+
211
+ # System bootloader configuration
212
+
213
+ bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda
214
+
215
+ autopart --type=lvm
216
+
217
+ # Partition clearing information
218
+
219
+ clearpart --none --initlabel
220
+
221
+
222
+
223
+ %packages
224
+
225
+ @^minimal
226
+
227
+ @core
228
+
229
+ kexec-tools
230
+
231
+
232
+
233
+ %end
234
+
235
+
236
+
237
+ %addon com_redhat_kdump --enable --reserve-mb='auto'
238
+
239
+
240
+
241
+ %end
242
+
243
+ #
244
+
245
+ ```
246
+
247
+
248
+
161
249
  ###補足情報(言語/FW/ツール等のバージョンなど)
162
250
 
163
251
 
@@ -168,4 +256,6 @@
168
256
 
169
257
  |ゲストOS |CentOS7.2.1511 minimal 64bit |
170
258
 
259
+ |isoイメージ |CentOS-7-x86_64-Minimal-1511.iso |
260
+
171
261
  |ホストOS |MacOSX |

1

調査内容の追加。(rpm でfirewalldの確認。サービスの確認。)

2016/03/05 01:55

投稿

kurokoSin
kurokoSin

スコア133

test CHANGED
File without changes
test CHANGED
@@ -44,6 +44,18 @@
44
44
 
45
45
  ### やったこと
46
46
 
47
+ パッケージの確認
48
+
49
+ ```
50
+
51
+ # rpm -q firewalld
52
+
53
+ パッケージ firewalld はインストールされていません。
54
+
55
+ #
56
+
57
+ ```
58
+
47
59
 
48
60
 
49
61
  サービスの検索
@@ -51,6 +63,16 @@
51
63
  ```
52
64
 
53
65
  # systemctl | grep fire
66
+
67
+ #
68
+
69
+ # systemctl status firewalld
70
+
71
+ ● firewalld.service
72
+
73
+ Loaded: not-found (Reason: No such file or directory)
74
+
75
+ Active: inactive (dead)
54
76
 
55
77
  #
56
78
 
@@ -77,6 +99,20 @@
77
99
  iptables-restore
78
100
 
79
101
  iptables-save
102
+
103
+ #
104
+
105
+ ```
106
+
107
+ /usr/lib配下の確認
108
+
109
+ ```
110
+
111
+ # ls /usr/lib | grep ire
112
+
113
+ #
114
+
115
+ # ls /etc | grep ire
80
116
 
81
117
  #
82
118