- 192.168.1.0 (network address),
- 192.168.1.1,
- 192.168.1.2,
- 192.168.1.3

Windows Azure - Setting up a static ip for a windows azure VM
DELL Switch - Intermittent Cable fault Arghhhh!
Azure - Copy VM disk from one Azure Storage account to another (across regions)
We had a Windows 2008 R2 server that was setup as a network policy server, which I believe installed the RAS service. Now the server has been around for a while so I must add that I am not sure if RRAS had been installed in the past and used, and then uninstalled, but RRAS was not installed at this time.
We were having an issue that this RAS server was grabbing blocks of 10 IP addresses from our DHCP server. After looking into this in became apparent that it was probably RRAS that was responsible, however as I say it was not installed. I did not fancy installing the RRAS role (in case it screwed up the current setup).
So…. I went looking for a Registry setting to turn off DHCP leasing for RAS or reduce the number of IPs that it gobbled up. Eventually I cam across this setting, which by default (or absence) is 10. This setting tells RAS how many IP addresses to grab.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess\Parameters\IP
Value Name: InitialAddressPoolSize
Data Type: REG_DWORD
Now this looked promising so I opened this key in the registry, and then stumbled across this beauty. This seemed to be more to my liking… actually turning DHCP leasing off…
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess\Parameters\IP
Value Name: InitialAddressPoolSize
Data Type: REG_DWORD
Value: 1
It was set to one, and a quick lookup found something for windows CE, that stated 1=on and 0=off.
Hoorah no more DHCP leases from the RAS server.
I am hoping this is correct, if you want to try it, its at your own risk. But for now it seems to have worked.
References
http://community.spiceworks.com/topic/97183-prevent-ras-entries-in-dhcp
Prevent RAS leasing IPs from DHCP server
I have had many instances over the last few years of slow netowrk performance on various machines.
Here I list the items I have changed to resolve these.
1. Disable AutoTuningLevel
netsh interface tcp set global autotuninglevel=disabled
To re-enable AutoTuningLevel if it does not work
netsh interface tcp set global autotuninglevel=normal
2. Disabling SMB 2
3. Disable TCP Offloading (needs restart)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
Value = DisableTaskOffload
Type = DWORD
Data = 1
Value = EnableTCPChimney
Type = DWORD
Data = 0
Value = EnableTCPA
Type = DWORD
Data = 0
Value = EnableRSS
Type = DWORD
Data = 0
I have had SMB2 and the TCP Offloading sprt out various network performance issue over the years.
Windows Servers - Slow network performance
I recently had to install XenServer onto a Dell R710.
This is an unlicensed install, Xen Server is now open source so this valid.
However in a unlicensed install updating the xenserver has to be down via the console.
Note: I had issues installing on to the R710 initially, I kept getting an unrecoverable error message. Stating something about the utility partition being unsupported on partition 2 (I cannot remember the exact message but I could not find anything on the internet about the message). However I fixed the problem by recreating the RAID5 array (PERC H700) and then reinitialising the array. Then I could happily install XenServer.
Once installed, I was able to browse to the XenServer IP I assigned via http, and I download XenCenter.
Once downloaded, I installed XenCenter on my Windows 7 x64 machine.
I then added the XenServer to XenCenter.
I then bonded to of the NICs together in an active-passive format (for redundancy). This took the nic setup I chose during installation, and applied it across the bonded nics. It was very easy to do.
There were 2 hot fixes to apply and this is where it started to depart from easyland.
With the unlicensed version they do not support installation of updates very the XenCenter, which would have been nice, you have to use the command line. I am not familiar with XenServer so this process was a bit alien to me.
1. Download the hotfixes and unzip the files.
2. Connect to XenServer via SFTP (I used FileZilla via SFTP, using root to connect).
3. I then changed to the \tmp folder and created a \tmp\updates folder, and uploaded the hot fixes into that folder. You only need the *.xsupdate files, not the *.tar.bz2 files.
4. Now we have to add to the pool database. In XenCenter goto the console. Change directory to the \tmp\updates folder.
5. xe patch-upload filename=<Path of file and name>
6. Record the UUID that is returned. Repeat step 5 for however many updates have been uploaded.
7. Run xe patch-list, this will list out the updates and you can check.
8. Run xe host-list, this will list out the UUID of the hosts. Not these UUIDs as these will be needed.
9. Now run xe patch-apply uuid=<UUID of the patch> host-uuid=<UUID of the host>
10. Repeat for all updates and then reboot the host server.
11. Once the reboot has completed you should be able to review the updates in XenCenter under the General tab for the host server, under the updates section.
References:
http://support.citrix.com/article/CTX132791
XenServer Installation–Dell R710
Had an issue, where i had a folder I had that was extracted from an archive, I wanted to rename the folder but Windows wouldn't let me.
I was getting errors from windows, saying that the folder no longer existed.
“The file or folder does not exist”
After trying a raft of things, I even moved the parent folder to another location, which windows happily let me do, I still couldn't rename the folder/s
When looking at the folders from the command prompt, it became there were some odd characters in the name that where no showing up in windows explorer, but in the command prompt they were appearing as white space.
In the end I managed to rename the folders using the command prompt and 8.3 filenames
“C:\ParentFolder\OddFolder Which Will Not Rename”
rename C:\ParentFolder\OddFo~1 C:\ParentFolder\Odd1
Remove\Rename a stubbornWindows Folder