KAVALIPOST

Thursday 29 August 2013

General Network Connectivity Problems


MS-Windows Troubleshooting


General Network Connectivity Problems (e.g. cannot connect to remote computer)


Symptom:

Unable to connect to remote computer. General network connectivity problems.

Cause:

There are a number of things which can prevent two workstations from communicating with each other over the network. These include (and this is unlikely to be an exhaustive list):
  • Poor or incorrect network protocol configuration
  • Network hardware problems
  • Software problems
The same can also cause problems even when superficially the network appears to be working.
Part of the problem in solving network connectivity problems is identifying what the underlying problem is or what the problems are.

Remedy:

The remedy to the problem depends on the root cause. The following should be regarded as a checklist of things to test:
  1. Check that the workstation be ‘pinged’, i.e.:
ping workstation
If this produces the message ‘Bad IP address workstation.’ then this indicates a name resolution failure, in other words NT has been unable to look up the IP address for the workstation. If the (target) workstation is on the same local network then ask the administrator to check that DSN is working correctly. If it is on a remote network then the IP address will probably need to be explicitly specified in the local TNSNAMES file. Alternately try pinging by specifying explicitly the IP address of the workstation, i.e.:
ping workstation-ip-address
e.g.
ping 192.10.44.1 (or whatever the ip address of the workstation is.)
If ping produces a message of the form:
Reply from ip-address: bytes=32 time<10ms TTL=128
Reply from ip-address: bytes=32 time<10ms TTL=128
Reply from ip-address: bytes=32 time<10ms TTL=128
Reply from ip-address: bytes=32 time<10ms TTL=128
Then this indicates that there is network connectivity between the two workstations. Packets are being sent to the workstation and replies received. The time may vary. However, if it produces the message:
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Then this indicates that there is no network connectivity between the two workstations. Things to check:
  • That the remote workstation is switched on.
  • That both workstations are (physically) plugged into the network.
  • That the hubs are switched on.
  • That the ip address that is being pinged (which ping echoes) is correct for the workstation. If it is not then this indicates either a DNS failure or an incorrect TNSNAMES entry.
  • That the remote workstation does not have a firewall that is preventing ping acknowledgements from being returned.
  • If both workstations are on a local network that their TCP subnet is the same. This can be checked using:
ipconfig
Do this on both workstations. For each network adapter this will show the following information:
IP Address. . . . . . . . . : ip-addresss
Subnet Mask . . . . . . . . : subnet-mask
Default Gateway . . . . . . : gateway-ip
 (may be blank)
For a local network the subnets should be the same. The ip-address logically and-ed with the subnet-mask should give the same result. If it does not then the workstations are on different subnets. Check the ip-addresses.
  • If the workstations are on different subnets then the packet will have been sent not directly to the workstation but via a gateway (and from there on to the workstation). To show the default gateway use:
ipconfig
To list all other possible gateways use the command:
route print
This lists other possible gateways that the workstation may use according to the ip address of the target. If the destination IP address does not match one of the network destinations listed then the default gateway will be used.
If there is no default gateway the add the ip address of the gateway as the default. Otherwise check that the gateway is listed in the routing table. The ‘route’ command allows new entries to be added.
Repeat the process (at both ends) but by pinging the gateway. This will establish whether there is basic communications between the workstation and its local gateway. If both sides can communicate with their respective gateways then the problem must lie with the link between the gateways. Consult your network administrator.
  1. If the computers are on different networks try:
tracert workstation
This will show the route to the computer any may give a better indication of where on the route the problem lies.
  1. Ping demonstrates that there is network connectivity between the two workstations. To check network reliability trying pinging with larger packets and for longer. Try each of the following:
ping workstation -l 1024 -t
ping workstation -l 4096 -t
ping workstation -l 8192 -t
The ‘-l’ parameter specifies the size of the message to send (the default is 32bytes, real applications will send much larger blocks of data). The ‘-t’ parameter specifies that it should continue pinging until you ‘control-C’ it. I would recommend trying each in turn and only breaking it after a complete screen full of responses. As the packet size increases the time will also increase. However even with 8192 byte packets there should be no ‘Request timed out’ messages. If any are seen then this indicates a hardware problem, either with the network hardware or with one of the adapters in either of the workstations.
Typical response times I would expect for a set of sample packet sizes are as follows:
Packet Size100mbps LAN10mbps LAN100mbps to 10mbps LAN via single gateway
-l 4096time<10ms<10ms10ms
-l 8192time<10ms10ms10ms
-l 16000time<10ms30ms30ms
-l 30000time<10ms50ms50ms
-l 60000time=10ms100ms110ms
Network topology will vary between sites (for instance the number of routers and switches that the network traffic request must navigate), so please regard these as ballpark/guideline figures. Any small variation between these figures and the figures are your site are probably not significant. The first ping message may show a higher time or even timeout, this is not significant provided it is only the first message.
To check whether it is a network adapter on either of the workstations look in the NT (system) event log. This may indicate if the adapter is giving problems. It could also be the network cable, hub or particular hub port. If the problem affects one particular workstation then this is indicative of either a network card failure, bad network cable or network hub port failure. For example if there are problems between workstations ‘A’ and ‘B’, also between ‘A’ and ‘C’ but not between ‘B’ and ‘C’ then this clearly indicates that the problem is related to workstation ‘A’. Try a different port on the network hub, then a different network cable and then try a different network card.
  1. If ping attempts fail the network appears to be totally unresponsive at one workstation (i.e. it cannot see anything on the network, even other workstations on the local network for which there are no network connectivity issues) then it is worth reinstalling the latest service pack. Some old dlls on the system can produce network related problems. It’s worth a try.
  2. Enable ‘Black Hole Router detection’. Part of the underlying network protocol involves the network cards in both computers negotiating agreeing on the largest packet size that they can mutually manage. (For Ethernet this is typically 1550 bytes.) When communicating over a WAN it is possible that some of the routers or bridges along the route will not be able to handle packets as large as the network cards can manage. These should return a message indicating when a packet is too large and at the same time specify the maximum packet size they in turn can manage. Normal TCP-IP communication is self tuning in this way. However some (older?) routers or bridges fail to respond correctly and quietly drop the packet if it is too large. These are known as ‘black hole routers’. In NT black hole router detection is disabled by default. To turn it on requires adding (or modifying the following registry key):
HKEY_LOCAL_MACHINE\ SYSTEM\ CurrentControlSet\ Services\ Tcpip\ Parameters\ EnabledPMTUBHDetect = 1
If adding this registry entry then add it as a REG_DWORD.
Other than event log, registry and service pack references these notes are also applicable to Windows 


LAN & Network Diagnostics


LAN & Network Diagnostics
These notes cover a variety of LAN trouble situations. Hope they help.
Before you start
Before you do anything, before you touch anything else:
1.    If you are tired or hungry you will not be at your best. If you are pulling your hair out in chunks you will not make smart decisions. Sometimes the best starting point for diagnosis is to take a break, have a rest or eat something - no matter what the short term pressures.
2.    Write down a list of everything that has changed. Chances are high your problem lies with the change or a side-effect of the change.
3.    Think it through first - running around doing things with no plan is a recipe for another disaster - once you find the original problem you've then got to go back and fix all the other problems you introduced when doing your imitation of a headless chicken.
4.    Be methodical. Start at one place and work slowly out from there. Test each step and MAKE NO ASSUMPTIONS. Check everything.
<rant> If you have got network cables with broken tabs you deserve everything you get. Breathe on those guys and they come loose. Keep a pair of scissors handy and cut the connectors off. Period. </rant>
What you should have done!
Wise after the event advice is never very helpful - but:
1.    Know what the NORMAL look of LEDs, flashing light and other indicators are. We typically look at these indicators only when something is NOT working and then assume they are telling us things that they probably are not.
2.    Keep a 'gold standard' - something that you know works - could be a laptop, could be a long cable that will stretch everywhere and you KNOW WORKs. Use this to eliminate possible errors.
RJ45 End Connectors
1.    Make and test practice cables until you get it right every time - especially before you destroy cables you just spend 2 hours fitting.
2.    When cutting the exterior cover of the cable be very careful not to cut the insulation cover of the conductors since this can cause shorts.
3.    Expose a maximum of 1 inch of individual conductors when preparing the cable for connection.
4.    Line up all the conductors according to the wiring standard you are using.
5.    Measure the cable and trim the conductor ends so they are are all the same length and no individual conductor wire is visible outside the plastic cover of the RJ45 connector.
6.    Carefully slide the prepared cable into the RJ45 connector making sure the end of the conductors reaches the end of the RJ45 connector.
7.    Using the crimp tool make the connection using one firm squeeze operation.
8.    Test the cable before fitting if possible.
9.    The RJ45 connector is the critical connection always use the highest quality connectors you can afford. The most common cause of connection faults is bad connectors.
New Connections
1.    Create and keep a 'gold standard' i.e. take a single PC/laptop connect it directly to the hub via a cable that is long enough to stretch from every room in the facility to the hub - confirm that the Hub/Switch LINK led works every time and preferably use a PC that has a LINK led on its LAN card.
2.    Using this configuration move it to every location when you test the connection. At least you know something works. Plug this configuration into the wall connector under test and if you don't get LINK - its your cable.
3.    Test every PC to wall LAN cable before you start by using them to connect to the Hub/Switch locally - you don't want to rip-up your installed cable until you are sure it's at fault.
4.    Make no assumptions - test or check everything
5.    Buy a cheap magnifying glass - its almost impossible to do a visual check of punch down connections without one
6.    Use a 'continuity tester' or a volt-meter to check individual conductors in cables
Networks
Q1. What is Ping and what does it do?
'Ping' (actually its full name is 'ICMP Echo request') is a simple command that may be issued from the DOS Command Prompt (Start/Run/cmd/OK). Ping tells you if you can, or cannot, contact an IP address (another PC). Ping sends a small message to another computer which causes the receiver to echo back the same message (the message pings forward and backward). Ping is the simplest and most useful diagnostic tool to become familiar with and well worth a few minutes experimentation. To use Ping;
1.    Run a command prompt (sometimes called a 'DOS box') (Start->Programs->Command Prompt (MSDOS) or Start->run enter command -> OK
2.    Type:
3.  ping xxx.xxx.xxx.xxx
where xxx.xxx.xxx.xxx is the IP address that you want to check followed by ENTER. You can also use a URL with a ping:
ping www.sitename.com
For this format to work the DNS service must be contactable and working.
4.    If ping works (you have successfully sent a message to the remote computer and received a response) you should get up to 4 replies of the form:
5.  Reply from xxx.xxx.xxx.xxx: bytes=32 time=yyms TTL=zz
Where xxx.xxx.xxx.xxx is the IP address that is responding, yyms is the time (yy) in milliseconds (ms) that the ping took and zz can be used to calculate the number of routers that it passed through on its journey.
6.    If the Ping fails you will see a message like:
7.  Request timed out (connection or routing error)
8.  OR
9.  Host unreachable (routing error)
10. OR
11. Network unreachable (routing error)
GO UP Image
Q2. Diagnosing Network Problems.
To diagnose a network problem you just start to verify the connections from a known starting point (your PC) moving progressively further into the network until you find the problem:
1.    Always start with your own PC (it regularly fails). Issue a ping to your own PC (get it's address here). If this fails restart your PC and try the failing operation again.
Check with someone else in the office - if you are the only person having the problem you have already isolated it to your PC or its wiring. Now you only have to find it - in all cases it is not a remote network problem.
1.    Restart your PC - 90% of all problems disappear with this one act.
2.    Check the link LEDs on your PC LAN card (if it has any).
3.    Check your cabling.
2.    Now check your local network.
Your local PC is OK - someone else has same problem.
Ping the local router (its address is the Default Gateway IP that you get here). If this fails we may have a problem with the local LAN or the router.
Now you have to move from your desk.
Find your router and Hub/Switch check the LED displays. If they are not normal remove and immediately replace the power connection or switch the unit OFF then ON.
Go back to your PC and retry to ping your local router and then repeat the failing operation.
3.    Check the remote network.
Your local router is OK - we can reach it and its LEDs are normal.
Issue a tracert command to 64.58.76.176 (www.yahoo.com) NOTE: always use the -d option with this command and you can abandon it using CTRL+C when you see two three consecutive rows of '*'.
Note the hop number of the first failure and contact your service provider.
Q3. What is a trace route (or tracert) command?
A tracert (or trace route) command tells you all the routers between your PC and the place you want to trace to (can be either an IP address or a URL e.g. www.smokeyjoe.com )
To run a tracert command:
1.    Click start->programs->Command Prompt (or Start->run enter cmd then OK)
2.    Enter:
3.  tracert www.xxx.xxx.xxx -d' (or www.smokeyjoe.com -d)
Replace the IP address with the one you want or use the URL of the site if you know it.NOTE: The -d in the command line stops a DNS lookup and speeds up the command considerably.
4.    tracert outputs the following display:
5.  a bbbb cccc dddd ee.ee.ee.ee
Where:
a is the hop number starting from 1
bbbb is the time is milliseconds that the first attempt took to reach the site. Asterisk means it timed out.
cccc is the time is milliseconds that the second attempt took to reach the site. Asterisk means it timed out.
dddd is the time is milliseconds that the third attempt took to reach the site. Asterisk means it timed out.
ee.ee.ee.ee is the IP address of the router at this hop number.
NOTES:
1.    If you do NOT add the -d then after the dddd entry you will see a router name first then an IP address in square brackets.
2.    You can abandon the command at any time by typing CTRL + C.

Q4. How do I find my TCP/IP configuration?
There are two methods of doing this - the quick and the long method depending on how much information you want:
The quick method (limited configuration):
1.    Load a Command Prompt (a DOS box) (Start->programs->Command Prompt or Start->run enter command then OK)
2.    If using windows '95 enter:
3.  winipcfg
This will display your IP address, subnet mask and default gateway (local router)
4.    If using Windows NT, windows '98, Win2K, XP enter
5.  ipconfig /all
this will display your IP address, subnet mask, default gateway (local router) and MAC address
The long method (full configuration)
Windows '95, '98 and NT 4.x, Windows 2K:
1.    Click start\settings\control panel.
2.    Double click 'Network'
3.    Select 'Protocols' tab
4.    Select TCP/IP then click 'Properties'
5.    Navigate to the relevant tab to find the required information.


Convert Any File Online



To day i got a image in .bmp format and i wanted to convert it to jpg format. I searched over internet and found many softwares. But i found an online site that easily convert any file to any format. Convert any file using the free online Zamzar service. This service allows you to convert any image, document, music, video, e-book, or compressed file format into another. Below are some different common examples of how this service could be used.

  •  Convert a .jpg image into a .png, .gif, or .bmp, etc.
  • Convert a YouTube video into a .avi, .mov, .3gp, .flac, .m4a, .wmv, etc.
  • Convert a .docx to a .doc, .pdf, .html, etc.
  • Convert a .pdf into an e-book format your e-reader supports.
  • Convert a .rar into a .zip

    CAT-5 CABLE AND RJ45 CONNECTORS


     How to correctly assemble a CAT-5 cable to RJ45 connectors for regular network cables as well as crossover cables.
    The CAT-5  is a standard cable which has four twisted pairs of colours. It is easy to crimp a RJ45 connector to CAT-5 cable and make it into a straight cable or cross the cable as required. To make a straight cable, the ends must be crimped in the same way at each end. When making a crossover cable, some wires of certain colours have to be reversed. 

    CAT-5 cable is usually divided into 4 twisted pairs of colours:

    Orange / orange-white
    Green / green-white
    Blue / white and blue
    Brown / brown-white

    Straight Cable Colour Code

    To make a straight cable, the tips must be crimped typically the same way ateach end by respecting the twisted pair size.

    In general, the colour code used is:

    1) orange-white
    2) orange
    3) green-white
    4) Blue
    5) blue-white
    6) Green
    7) brown-white
    8) brown

    Crossover Cable Colour Code


    For a crossover cable, swap 1 with 3, and 2 with 6, in the list above. This gives:

    1) green-white
    2) green
    3) orange and white
    4) Blue
    5) blue-white
    6) orange
    7) brown-white
    8) brown

    Standard EIA / TIA 568 (A &B) Colour Code

    Straight cable

    1) white-green / white-green
    2) green / green
    3) white-orange / white-orange
    4) Blue / blue
    5) white-blue / white-blue
    6) Orange / orange
    7) white-brown / white-brown
    8) brown / brown

    Crossover cable 10/100baseT Colour Code


    1) white-green / white-orange
    2) Green / orange
    3) white-orange / white-green
    4) Blue / blue
    5) white-blue / white-blue
    6) Orange / green
    7) white-brown / white-brown
    8) brown / brown

    Complete crossover cable or crossgigabit Colour Code

    On Gbic 1000BaseT eg

    1) white-green / white-orange
    2) Green / orange
    3) white-orange / white-green
    4) Blue / white-brown
    5) white-blue / brown
    6) Orange / green
    7) white-brown / blue
    8) Brown / white-blue

    Note:

    Many Gigabits (10/100/1000 multi speed) are auto MDI / MDIX and automatically adapt to the type of cable connected.

    Courtesy : Foreign Post Office Mumbai













    Batch file to Switch Between WAN and Broad Band in WAN Offices



    In WAN Offices often we are using Broad Band in so many circumstances. For Swinth between WAN and Broad band we have to change Default gateway, and DNS server's ip each time.Here is the simple solution to switch between WAN and Broad band.

    Steps:
    1.Before creating batch file.IP and Subnetmask of Broad band Modem must be in WAN IP Series. For this task please refer mannual.Click here to download mannual
    2.Create a new notepad(.txt document)
    3.Copy and paste the following script

    @ECHO OFF

    color 2

    Echo * Now System IP Changes to WAN Settings*

    Echo ** If ready to switch to WAN ** PRESS ENTER *** or else Ctrl+ C

    pause


    set vargw=10.102.154.193
    set vardns1=164.100.3.1
    set vardns2=164.100.17.3


    ECHO Setting Gateway
    netsh int ip set address name = "Local Area Connection" gateway = %vargw% gwmetric = 1

    ECHO Setting Primary DNS
    netsh int ip set dns name = "Local Area Connection" source = static addr = %vardns1%

    ECHO Setting Secondary DNS
    netsh int ip add dns name = "Local Area Connection" addr = %vardns2%

    Echo **** Now You are in Wide Area Network ****

    pause


    4.Change set vargw=Router IP of WAN or Modem IP of Broadband
    set vardns1=Primary DNS of WAN or Broadband
    set vardns2=Secondary DNS of WAN or Broadband
    5.Save the file.
    6.Rename it as WAN.bat or Broadband.bat
    7.Just double click to Switch between WAN and Broadband
    Note:This batch file works in Computers which are having Single Network Adapter only.


    Configuration of Broadband and leased line in Switch


    FOLLOW THE FOLLOWING STEPS FOR CONFIGURATION OF BROAD BAND MODEM.

    01. PING 192.168.1.1(DEFAULT IP ADDRESS OF BROAD BAND MODEM)
    02. OPERN YOUR WEB BROWSER TYPE http://192.168.1.1
    03. type user name: admin, password: admin.
    04. goto advanced setup>WAN
    05. click on edit on line containg vpi/vci 0/35.
    06. click on next > change the connection type to pppoe
    07. click on next > enter username and password and service name.
    08. click on next>next> save
    09. again advanced setup screen will appears
    10. click on save/reboot.

    after two minutes.

    01. again open the web browser and type 192.168.1.1
    02. enter username : admin and password: admin
    03. click on device info.
    04. note down the primary dns server and secondary dns server.
    05. configure the system in which you want broad band as follows

    ip address 192.168.1.x
    subnet mask 255.255.255.0
    default gateway 192.168.1.1
    preferred dns server: <enter the value from step 4>
    alternate dns server:<enter the value from step 4>


    or

    ip address 192.168.1.x
    subnet mask 255.255.255.0
    default gateway 192.168.1.1
    preferred dns server: 192.168.1.1

    if you dont want borad band in a system then dont configure the default gateway, preferred dns server and alternate dns server in that system.






Wednesday 28 August 2013

KAVALI HO POSTMASTER HAS GIVEN A GIFT TO THE REGULAR IMTS CUSTOMOR





KVS Extended Last Date for Teacher Recruitment 2013


Kendriya Vidyalaya Sangathan has extended last date for teacher recruitment July 2013 from 28th August 2013 to 18th September 2013. This change was made keeping in view the result declaration date for CTET July 2013. The CTET result is scheduled to be declared on 3rd September 2013.

The extension is a result of continuous efforts made by many candidates specially Ms. Anita Mahajan was leading this campaign. She sent the following letter to many officers in KVS and CBSE. With due regards itis stated that last date of depositing fee for KVS TGT and PRT Exam is28.08.2013. Passing of CTET (conducted by CBSE) is must for a candidate to apply in this exam. CBSE has conducted CTET test on 28 July 2013 and will declare CTET result on 03.09.2013. Almost 10 lakh candidates have appeared in CTET exam. KVS exam for TGT and PRT is being conducted this year after a gap of 02 years. All the candidates have great hopes from KVS exam but if they are not allowed to sit in this exam only due to non-declaration of CTET result, it willbe a great injustice to them. It will demoralize them and will bring them only frustration.

There is a gap of only few days between the last date of deposition of fee for appearing in TGT and PRTKVS exam(i.e. 28.08.2013) and the date of declaration of CTET result (i.e03.09.2013). So it is requested to give extension in last date of depositing fee for TGT and PRT KVS Exam by 10 days so that all aspirants can appear inprestigious KVS exam or CBSE should declare CTET July 2013 result before 28th August. This will also improve the quality of candidates selected for TGT and PRT post in KVS.
Both KVS and CBSE should take care of the future of lakhs of candidates which is at stake. Both should coordinate with each other for the sake of justice to NATION, STUDENTS AND TEACHERS.

IT IS HIGHLY HOPED THAT HON’BLE HRD MINISTER, HRD OFFICERS, KVS OFFICERS AND CBSE OFFICERS WILL UNDERSTAND THE SENSITIVITY OF THIS ISSUE AND DO THE NEEDFUL.


No sanction needed to probe top babus in court-monitored investigation: CBI


In a forceful counter to the Centre's stand that top bureaucrats cannot be probed without its prior sanction, theCBI on Tuesday reiterated in the Supreme Court that in court-monitored investigations, the agency must be free to probe everyone without having to take any statutory sanction.

Just two days before the scheduled hearing in the 'Coalgate' case before a three-judge bench, the agency said, "There is no requirement of sanction for prosecution in cases where the court has either directed investigation or is monitoring investigation of case."

Section 6A of the Delhi Special Police Establishment (DSPE) Act provides that no officer of the rank of joint secretary and above can be investigated in a case without prior sanction from the government and the Centre had strongly defended it saying it was meant to protect bureaucrats from harassment.

The court had repeatedly asked, during the hearing on coal scam, about relevance of 'prior sanction' in court-monitored investigations.

In its affidavit settled by senior advocate Amarendra Saran, the agency said in court-monitored investigations, the court acted as guardian of the rights of the citizens and there was no room for bureaucrats under the scanner to fear harassment if they had taken honest decisions.

"Therefore, the objectives of Section 6A of DSPE Act are fully achieved when a case is monitored by the court, more specifically constitutional courts of the country," it said.

If one understood that prior sanction from the Centre was needed even in court-monitored investigations, "it would amount to suspension of the power of the constitutional courts to monitor investigation", the CBI said.

It would also be discriminatory since it could mean that the court had power to monitor investigations into cases only against officers who were below the rank of joint secretary, the agency said and feared that such an interpretation would be contrary to the legal principle that "no person is above the law".

"It is therefore necessary to read down the provisions of Section 6A of DSPE Act to mean that prior sanction under Section 6A is not necessary in cases where investigation is monitored by a constitutional court," the CBI said.

The agency also reiterated its demand, in the light of the court's attempt to insulate it from political interference and make it an independent investigation unit, seeking more powers for the CBI director.

What appeared to rile the CBI director was the Centre's refusal to grant him 'ex-officio powers of secretary to the government of India'. "It may be mentioned that already three police officers - secretary, Research and Analysis Wing (RAW), secretary (internal security) in ministry of home affairs and secretary, security - are vested with powers of secretary to the GoI," the CBI said.

"Chairman of railway board and other members of railway board are also vested with the powers of secretary tothe GoI," the CBI said and demanded greater financial powers to the CBI director.

While seeking a separate budget for itself, the CBI suggested that its director be independent of the ministry of department and personnel as far as investigations were concerned while remaining accountable to the minister concerned for administrative and financial matters.

Source : The Times of India

Civil Services Mains Examination 2013 from December 1


 Last Date for Online Applications is September 10

Civil Services Mains Examination 2013 is going to be held from December 1.  The exam will be held for five days.  There will be eight compulsory papers and one optional.  Candidate who qualified in the prelims exam can submit their online applications before September 10.


Civil Service Main Exam 2013 will be held from December 1, 2013.  Candidates who cleared the preliminary examination papers that were held in May this year are eligible to apply for the mains exam.  Civil Services Main exam 2013 will be held for five days from 1st to 5th December.  The test will be conducted in 19 centres located all across India.

The centres in which Civil services main examination will be held are Ahmadabad, Allahabad, Bangalore, Bhopal, Chandigarh, Chennai, Cuttack, Delhi, Dispur, Hyderabad, Jaipur, Jammu, Kolkatta, Lucknow, Mumbai, Patna, Shillong, Shimla and Tiruvananthapuram.

Candidates who want to appear for Civil Services Main Examination will have to apply to ‘Under Secretary (CSM), Union Public Service Commission, Dholpur House, shahjahan Road, New Delhi – 110069.  They should submit the online application and then send the printout of the application to the above address.  All the necessary documents should be enclosed.  Fee that has to be paid for general candidates is Rs. 200.  This should be paid through central recruitment fee stamps which are available at the post offices.  The stamps have to be affixed on the application form.  There is no need to pay the fee by SC/ST candidates and also female candidates. Civil Services Main Exam will be conducted for five days. There will be eight compulsory papers and one optional.   Nearly 16,000 candidates qualified in the preliminary exam that was conducted in May, 2013.  These candidates have to re-apply for the civil services mains examination 2013. The applications will be available on the official website.  Online applications are open from 20th August and the last date for applying is September 10.  Exam will be conducted on December 1.  Printout of the online application should reach the above mentioned address before 18th September, 2013.  The envelope that contains the application should have ‘Application for Civil Services (Main Examination 2013) written on it.

Representation from Government Servant on service matters through VIPs and other important dignitaries/Offices- reg.

KENDRIYA VIDYALAYA SANGATHAN 18, InstitutionaL Area, Shaheed Jeet Singh Marg
New Delhi 110 016
F.11029-12/2013-KVSHQ (Admn.-l)
Date: 23.08.2013
The Deputy Commissioner
Kendriya Vidyalaya Sangathan
All Regional Offices

SUB: Representation from Government Servant on service matters through VIPs and other important dignitaries/Offices- reg.

Sir/Madam,
   Of late the Govt. of India has observed that there is an increasing tendency on the part of employees and officers at different levels to by-pass the prescribed channels of representation and write directly to the high functionaries totally ignoring the prescribed channels. Apart from individual representations, the Service Unions have also developed a tendency to write to the Ministers and Prime Minister on individual grievance. Some of these representations also often forwarded through Members of Parliament. It is clear violation of Rule 20 of the CCS (Conduct) Rule, 1964.

   The Govt. of India has viewed the matter seriously and has decided to initiate disciplinary action against those who violate the channel of submission of representations by the Government servants. A copy of Govt. of India, DoPT Office Memorandum No. 11013/08/2013-Estt (A)-III dated 06.06.2013 is enclosed with the instructions that the instructions contained therein may be followed in KVS strictly.

   This may be circulated among all Kendriya Vidyalayas functioning under your administrative jurisdiction including all employees of your offices. Acknowledgement of the circular by each of the employee working under your jurisdiction be obtained and kept in record in your office. Further the compliance of these instructions be reported to KVS (Hqrs) within a period of 30 days from the receipt of this letter without fail.

   Hindi version will follow.
   Yours faithfully,
Sd/-
(Dr. E. Prabhakar)
Joint Commissioner (Pers.)

Source:http://www.kvsangathan.nic.in/CircularsDocs/CIR-ADMN-27-08-13.PDF

Your Cell Phone can give you Cancer


Mobile is an inseparable part of our life. We are completely dependent on our mobile phones and everyone has it, even school children. 

We are pretty sure that most of us are Nomophobiacs at least till some extent. You may have read reports that this tiny, super functional gadget can be life threatening, but is it the truth? There are reports that radiation can even turn your brain into an omelette. We did a little research and got you some factual answers.


Radiation from your mobile?


Yes! Radiation is present from mobile phone in the form of electromagnetic waves. Through a particular radio frequency on these electromagnetic waves, you are able to make and receive calls. The radiation emission is present in small amounts from your mobile as these emissions are of short range waves.


Radiation absorption


Small amount of radio waves emitted from your mobile is absorbed by the body. According to Wikipedia - the maximum power output from a mobile phone is regulated by the mobile phone standard. In most systems the mobile and the base station check reception quality, signal strength and the power level. It is increased or decreased automatically within a certain span to accommodate different situations - when you are inside or outside the building or vehicle.


The rate at which energy is absorbed by the human body is measured by the Specific Absorption Rate (SAR). SAR data for specific mobile phones, along with other useful information, can be found directly on manufacturers' websites.


Effects by mobile radiation


The effects can be of two types - thermal and non-thermal.


Thermal effects


One of the most common effects by electromagnetic waves is dielectric heating. When a person uses a cell phone, most of the heating effect will occur at the surface of the head. 


This heating can increase your head temperature by a fraction of a degree. However this heat is less than the heat obtained by sunlight. The blood circulation isn't affected much, as the brain's blood circulation is capable enough to deal with excess heat, but the cornea of the eyes is not accustomed to a lot of heat.


Non-thermal effects


The communications procedure used by mobile phones often result in low-frequency pulse from the carrier signal.


"Non-thermal effects" could be reinterpreted as a normal cellular response to an increase in temperature. This heat can activate several messenger system, gene expression and production of heat shock protein in order to defend the cell against stress caused by heat.


According to a study conducted by The Journal of the American Medical Association - exposure to radio frequency signal waves within parts of the brain closest to the cell phone antenna resulted in increased levels of glucose metabolism.


In non-thermal effects, following problems can be seen.


- Blood-brain barrier effects
- Cancer
- Cognitive effects
- Electromagnetic hypersensitivity like tingling sensation in the skin of the head, headache,dizziness, loss of mental attention etc.
- Sleep disorders
- Behavioural effects


Reduce the effect of phone radiation


In order to lower the effects of mobile phone radiation follow these simple steps:


Keep some distance 


Behind every phone packaging, in fine prints most of the mobile brands recommend to keep your cell at least 10millimeters away from your body. Learn to maintain some distance with your tiny buddy. It may sound difficult but it is not impossible.


Weak signal is bad


Cell phones release more radio frequency radiation when the signal is low. That means, if your signal is low avoid using your cell phone to prevent unnecessary harm.


Choose hands-free headsets


Always choose hands-free headsets, as it will help to reduce the radiation emissions to the brain.


Switch sides


Change hands (and ears) frequently while talking on your cell phone to limit the amount of exposure to one side of your head. 


Use speakers to dial numbers


The radiofrequency radiation is strongest when your phone is attempting to place a call, so hold it away from your head until you hear someone pick up.

Source : http://timesofindia.indiatimes.com

IMPORTANT POINTS TO BE CHECKED BY SUB DIVISIONAL HEADS DURING THEIR VISIT TO SUB OFFICE


IMPORTANT POINTS TO BE CHECKED BY SUB DIVISIONAL HEADS DURING THEIR VISIT TO SUB POST OFFICE.

MAILS AND PROJECT ARROW


1. Mail in deposit – check the remarks given by Postman on deposit mail, arrange delivery of mail by contacting the addressees over phone, if possible.
2. Check whether mail has been date stamped before delivery?
3. Check the quantity of stamping and take appropriate action to improve the quality of stamping.
4. Check whether opening of mail bags is done properly. Check whether unpaid, missent and deliverable mails are segregated properly.
5. Check % of RTS mail. Check % of missent mail and take action to improve the % of RTS and missent. Check that RFD targets are being achieved by the SO (in case of project arrow office)
6. Check the returns from Postman and satisfy yourself that Postman has taken all efforts to deliver the mail.
7. Check whether “Unpaid Taxation Register”, “Bag Opening Register” are maintained properly.
8. Check whether Due Mail and Sorting List is on records and whether it requires any changes?


ACCOUNTS

9. Check whether Memo of Authorized balances is on records and does it require any changes? If so review and get it reissued.
10. Check whether SO is having stock of Postage stamps and stationery as authorized in Consolidated Memo of Authorized Balances?
11. Check whether SO is supplying the stamps and stationery to BOs as per Memo of Authorized Balances and whether any BO is having the stock of stamps less than the authorization. If so, get the supply made by SO immediately.
12. Check whether stock of IPOs is being replenished by the HO as per Memo of IPOs sold. Check whether SO is having stock of IPOs as per authorization.

SAVINGS BANK AND CBS

13. Check whether signature scanning is completed.
14. Check whether stock of NSCs is available at SO as per authorization and SO is having sufficient stock of NSCs of small denominations.
15. Check whether staff on the counter is aware about the target of SO and he/she is making all efforts for opening of new accounts against closed one and issue of certificates against discharged one.
16. Check whether the stock of Passbooks is available with SO commensurate with target allotted to SO.
17. Check what is the ratio for closure to open accounts of the SO. Try to improve the ratio by opening of 4 accounts against each closed account.
18. Check the Minus Balance cases status and take appropriate action.
19. Check the SBCO objection status and take appropriate action.
20. Check the status for data migration from SO to HO.

OTHER POINTS

21. Check the position of targets and achievements of SO for various types of targets.
22. Check whether drill cloth of the stamp pads has been changed and quality of stamping is good.
23. Check whether the current and old record has been kept properly and neatly.
24. Check whether the deposit mail is kept in custody properly.
25. Check the general cleanliness of the SO to see that the SO is in presentable condition.

TECHNOLOGY

26. Check whether the SPM and the staff working on computers is having the knowledge about departmental software.
27. All modules are being used by the SO and proper manner.
28. All communications are being done by the SO properly and timely.
29. Whether the stock of items shown in system and actual stock held by the SO are matching. If not, get it rectified.

30. Check whether all PCs and printers are working properly.