Skip to main content

Posts

Showing posts from June, 2016

network layer esy to understand

TCP/IP The Internet Protocol Suite, popularly known as the TCP/IP model, is a communication protocol that is used over the Internet. This model divides the entire networking functions into layers, where each layer performs a specific function. This model gives a brief idea about the process of data formatting, transmission, and finally the reception. Each of these functions take place in the layers, as described by the model. TCP/IP is a four-layered structure, with each layer having their individual protocol. Let us have a look at the four layers: Link Layer As the name suggests, this layer includes the physical and logical connections from the host's link. It is also known as Network Access layer and Network Interface layer. It explains how the data is transmitted from the host, through the network. The physical connectors like the coaxial cables, twisted pair wires, the optical fiber, interface cards, etc., are a part of this layer. This layer can be used to connect different ne

network layer esy to understand

TCP/IP The Internet Protocol Suite, popularly known as the TCP/IP model, is a communication protocol that is used over the Internet. This model divides the entire networking functions into layers, where each layer performs a specific function. This model gives a brief idea about the process of data formatting, transmission, and finally the reception. Each of these functions take place in the layers, as described by the model. TCP/IP is a four-layered structure, with each layer having their individual protocol. Let us have a look at the four layers: Link Layer As the name suggests, this layer includes the physical and logical connections from the host's link. It is also known as Network Access layer and Network Interface layer. It explains how the data is transmitted from the host, through the network. The physical connectors like the coaxial cables, twisted pair wires, the optical fiber, interface cards, etc., are a part of this layer. This layer can be used to connect different

how to import more than 2 mb to 1024 mb data base file in phpmyadmin

how to import more than 2 mb to 1024 mb data base file in phpmyadmin I tried and i got the error message saying the size is greater. I tried with php.ini and increased the size of upload =================== change upload_max_filesize 2M  to 1024M ================== ; Maximum allowed size for uploaded files. ; http://php.net/upload-max-filesize   upload_max_filesize = 300M Find: =========================== post_max_size = 8M upload_max_filesize = 2M max_execution_time = 30 max_input_time = 60 memory_limit = 8M ============================== Change to: post_max_size = 1024M upload_max_filesize = 1024M max_execution_time = 5000 max_input_time = 5000 memory_limit = 1000M 

how to import more than 2 mb to 1024 mb data base file in phpmyadmin

how to import more than 2 mb to 1024 mb data base file in phpmyadmin I tried and i got the error message saying the size is greater. I tried with php.ini and increased the size of upload =================== change upload_max_filesize 2M  to 1024M ================== ; Maximum allowed size for uploaded files. ; http://php.net/upload-max-filesize   upload_max_filesize = 300M Find: =========================== post_max_size = 8M upload_max_filesize = 2M max_execution_time = 30 max_input_time = 60 memory_limit = 8M ============================== Change to: post_max_size = 1024M upload_max_filesize = 1024M max_execution_time = 5000 max_input_time = 5000 memory_limit = 1000M 

check malware in windows using cmd

check malware in windows using cmd Since you cannot see this file nor delete it (because the attributes that was set on these files are +s +h +r) +s - meaning it is a system file (which also means that you cannot delete it just by using the delete command) +h - means it is hidden (so you cannot delete it) +r - means it is a read only file  Microsoft Windows [Version 10.0.10240] (c) 2015 Microsoft Corporation. All rights reserved. C:\Users\admin>.. '..' is not recognized as an internal or external command, operable program or batch file. C:\Users\admin>cd.. C:\Users>cd.. C:\>attrib A  SHR       C:\bootmgr A  SH        C:\BOOTNXT A            C:\HaxLogs.txt A  SH   I    C:\hiberfil.sys A  SH        C:\pagefile.sys A  SH        C:\swapfile.sys C:\>attrib +s Not resetting hidden file - C:\bootmgr Not resetting hidden file - C:\BOOTNXT Access denied - C:\HaxLogs.txt Not resetting hidden file - C:\hiberfil.sys Not resetting hidden file - C:\pagefile.sys Not resetting h

check malware in windows using cmd

check malware in windows using cmd Since you cannot see this file nor delete it (because the attributes that was set on these files are +s +h +r) +s - meaning it is a system file (which also means that you cannot delete it just by using the delete command) +h - means it is hidden (so you cannot delete it) +r - means it is a read only file  Microsoft Windows [Version 10.0.10240] (c) 2015 Microsoft Corporation. All rights reserved. C:\Users\admin>.. '..' is not recognized as an internal or external command, operable program or batch file. C:\Users\admin>cd.. C:\Users>cd.. C:\>attrib A  SHR       C:\bootmgr A  SH        C:\BOOTNXT A            C:\HaxLogs.txt A  SH   I    C:\hiberfil.sys A  SH        C:\pagefile.sys A  SH        C:\swapfile.sys C:\>attrib +s Not resetting hidden file - C:\bootmgr Not resetting hidden file - C:\BOOTNXT Access denied - C:\HaxLogs.txt Not resetting hidden file - C:\hiberfil.sys Not resetting hidden

WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive).

WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive). how to solve asp. net c# error easy to solve step 1. change your web config. file put this code  in web config-  <appSettings>     <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />   </appSettings> web.config   <?xml version="1.0"?> <!--   For more information on how to configure your ASP.NET application, please visit   http://go.microsoft.com/fwlink/?LinkId=169433   --> <configuration>     <system.web>       <compilation debug="false" targetFramework="4.5" />       <httpRuntime targetFramework="4.5" />     </system.web> <appSettings>     <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />   </appSettings> </configuration>

WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive).

WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive). how to solve asp. net c# error easy to solve step 1. change your web config. file put this code  in web config-  <appSettings>     <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />   </appSettings> web.config   <?xml version="1.0"?> <!--   For more information on how to configure your ASP.NET application, please visit   http://go.microsoft.com/fwlink/?LinkId=169433   --> <configuration>     <system.web>       <compilation debug="false" targetFramework="4.5" />       <httpRuntime targetFramework="4.5" />     </system.web> <appSettings>     <add key="ValidationSettings:UnobtrusiveValidationMode&qu

how to view email sender orignal public ip address

                                                                                                                                                                                                                                                                Delivered-To: sanjaymakwan--@gmail.com Received: by 10.200.35.171 with SMTP id q40csp290498qtq;         Fri, 10 Jun 2016 10:33:57 -0700 (PDT) X-Received: by 10.28.63.134 with SMTP id m128mr144906wma.97.1465580037428;         Fri, 10 Jun 2016 10:33:57 -0700 (PDT) Return-Path: <niren----@gmail.com> Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com. [74.125.82.43])         by mx.google.com with ESMTPS id on1si13487936wjc.56.2016.06.10.10.33.57         for <sanjaymakw---@gmail.com>         (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);         Fri, 10 Jun 2016 10:33:57 -0700 (PDT) Received-SPF: pass (google.com: domain of nire----@gmail.com designates 74.125.82.-- as permitted sender) client-ip

how to view email sender orignal public ip address

                                                                                                                                                                                                                                                                Delivered-To: sanjaymakwan--@gmail.com Received: by 10.200.35.171 with SMTP id q40csp290498qtq;         Fri, 10 Jun 2016 10:33:57 -0700 (PDT) X-Received: by 10.28.63.134 with SMTP id m128mr144906wma.97.1465580037428;         Fri, 10 Jun 2016 10:33:57 -0700 (PDT) Return-Path: <niren----@gmail.com> Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com. [74.125.82.43])         by mx.google.com with ESMTPS id on1si13487936wjc.56.2016.06.10.10.33.57         for <sanjaymakw---@gmail.com>         (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);         Fri, 10 Jun 2016 10:33:57 -0700 (PDT) Received-SPF: pass (google.com: domain of nire----@gmail.com designates 74.125.82.-- as permitted sender) clien

Binatine router dhcp client list binatone router wr1500n3

Binatine router Router default password -> admin admin dhcp client list binatone router wr1500n3

Binatine router dhcp client list binatone router wr1500n3

Binatine router Router default password -> admin admin dhcp client list binatone router wr1500n3