분류 전체보기 330

port forwarding, sshm systemctl, systemd, sshd, firewall, tcp, packet, protocol, ifcfg, dns

port forwarding In computer networking, port forwarding or port mapping is an application of network address translation that redirects a communication request from on address and port number combination to another while the packets are traversing a network gateway, such as a router or firewall. ㅁ ㅁ ㅁ my house --------------------------> my lab -----------------------------> server public IP(ex,..

Concept/Network 2021.02.08

parameter, argument, def, *arg, **kwargs, return, global, *val, nonlocal, namespace

name='aaa' email='bbb@gmail.com' addr='seoul' def print_business_card(name,email,addr): print('name:%s'%name) print('email:%s'%email) print('address:%s'%addr) print_business_card(name,email,addr) >>> name:aaa email:bbb@gmail.com address:seoul parameter A parameter is the variable listed inside the parentheses in the function definition. argument An argument is the value that is sent to the funct..

Basic Python 2021.01.27