Posts

Enable/Disable ping replies although Windows firewall is up

How to still alow ping reply although you already enable Widows Firewall enable ping replies: netsh firewall set icmpsetting 8 disable ping replies: netsh firewall set icmpsetting 8 disable Ripped off from some site. /alak

FUDCon APAC: KL 2012 : Pre-registration & funding request is now open

Image
FUDCon APAC: KL 2012 : Pre-registration & funding request is now open!! Location: UCTI-APIIT, Bukit Jalil, Kuala Lumpur Date: 18-20th May 2012 Wiki: http://fedoraproject.org/wiki/FUDCon:KualaLumpur_2012 FUDCon is the Fedora Users and Developers Conference , a major free software event held in various regions around the world, usually annually per region by the Fedora Project , a GNU/Linux distribution community. FUDCon is a combination of sessions, talks, workshops, and hackfests in which  contributors work on specific initiatives. Topics include infrastructure, feature development, community building, general management and governance, marketing, testing and QA, packaging, etc. This year, Malaysia gets the opportunity to host this premier event for the Asia Pacific region and we are inviting everyone, developers and users alike,to participate in this event which will be a span of 3 days, at The AsiaPacific University College of Technology and Innovation (UCTI ...

Developer Trace in SAP

Two good references: wadehel is diz developer trace? http://help.sap.com/saphelp_nw04/helpdata/en/1f/8311664bc511d189750000e8322d00/content.htm How to get this "trace file"? http://help.sap.com/saphelp_nw04/helpdata/en/95/5120275a8449ada5fedd2d77f6f6fb/content.htm Basically its SAP logging. File can be retrieved from host locally

Testing SAP conn using NIPING with SAPRouter

To test NIPING direct simply something like: niping.exe -c -H ip.add.re.ss In case to test with SAPRouter, its soemthing like: niping.exe -c -H /H/202.171.46.160/S/3299/H/192.168.13.103/S/3200 A reference from here :  http://mysapbasis.wordpress.com/2010/02/08/niping-syntax/ /alak

Windows 2003 W2k3 Getting Current MTU Size

Image
I am trying to get the current running MTU sieze configured on a windows 2003 (W2K3) server. Got a ref from here : http://superuser.com/questions/37686/how-to-tell-what-mtu-is-being-used-in-windows-xp But during running the netsh command, got some error saying 'command not found'. It turns out the real command for ipv4 is not ipv4 but just 'ip' and ithe one i'm trying to use is not 'subinterfaces' but just 'interface'. SO my final command that wokred as below: netsh interface ip show interface And the result shown is as below, and you can get hell lot of details. :) /alak

SAP check SAPRouter validity and expiry

Image
You can check SAPRouter expiry or validity period by below: https://websmp101.sap-ag.de/SAPROUTER-SNCADD It would look like below: p/s: found this because we hit an error "router permission denied" /alak

Windows for loop - add multiple ports to exception using netsh.exe

Adding multiple ports to exception list on windows firewall using netsh.exe comand line utility. using for loop in windows batch. for %i in (3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3298 3299 3600 3601) do netsh firewall add portopening TCP %i "SAP Router Port %i - Added by Adam 27-Jan-2012" or for a port range without skipping: for /L %i in (9000-9600) do echo %i /alak