1
00:00:00,390 --> 00:00:07,950
Now, let us verify the access by using your elinks and curl, so we will go into our C10 system,

2
00:00:07,950 --> 00:00:14,100
client 10 system first, we are going to run this elinks command elinks.

3
00:00:16,340 --> 00:00:21,550
--dump.

4
00:00:23,480 --> 00:00:34,700
We are going to specify https://www.example.com.

5
00:00:38,290 --> 00:00:43,180
It is giving SSL error which was expected then we are going to use Curl.

6
00:00:44,950 --> 00:00:51,400
Again, we will see that it is giving some that mean it is self-signed certificate, so it is going to

7
00:00:51,400 --> 00:00:52,190
give some message.

8
00:00:52,840 --> 00:00:54,580
So we will modify the commands.

9
00:00:55,030 --> 00:00:57,190
We will specify the minus -k option.

10
00:00:57,460 --> 00:00:59,860
That means override that objection.

11
00:01:01,570 --> 00:01:06,490
That mean now the data is visible for elinks.

12
00:01:06,520 --> 00:01:11,410
What we are going to do, we will modify our browser settings.

13
00:01:12,550 --> 00:01:19,720
So we will open one configuration file for the elinks browser that is /etc/elinks.conf file.

14
00:01:20,920 --> 00:01:28,840
So here we have got one line is there which is written that connection.SSL.cert_verify

15
00:01:29,080 --> 00:01:30,760
that it is going to verify.

16
00:01:31,180 --> 00:01:33,610
So it will not accept self-signed certificate.

17
00:01:33,620 --> 00:01:39,880
So we are going to disable this option by setting the value from by changing the value

18
00:01:39,880 --> 00:01:41,620
from 1 to 0.

19
00:01:42,490 --> 00:01:44,090
So we are going to change that value.

20
00:01:46,030 --> 00:01:55,480
You can look at the value new value by running the grep command also so we can specify that, we

21
00:01:55,480 --> 00:01:59,480
want to just check whether we have successfully modified that or not.

22
00:01:59,920 --> 00:02:02,270
So we are just going to check that parameter.

23
00:02:03,370 --> 00:02:07,600
So it is showing that we have now changed the value from one to zero.

24
00:02:08,020 --> 00:02:14,580
Now, again, when we are going to run this elinks dump command, so it is showing us the proper output

25
00:02:14,920 --> 00:02:18,150
that mean our https is working properly.

26
00:02:19,600 --> 00:02:21,670
So we are able to verify the access.
