frp-p2p配置说明
标准的配置文件
访问者、被访问者都修改frpc.ini,中间的媒婆服务器修改frps.ini,其中的c就是client客户端,s指server服务器。
被访问者:frpc.ini
bash
[common]
# 这里是客户端配置,server_addr后写本客户端要连接的服务器的IP地址,默认是0.0.0.0
server_addr = 服务器IP
server_port = 7000
# 鉴权使用的 token 值,可以自定义
token = abc123123
# 启用 TLS 协议加密连接
tls_enable = true
[rdp]
type = stcp
# 这部分是代理配置,将type改为stcp类型的代理
# sk是密钥,可以自定义。服务端和访问端的密钥需要一致,访问端才能访问到服务端
sk = abcd1234
# 不需要写远端端口(remote_port),因为代理的是本地的3389端口
local_ip = 127.0.0.1
local_port = 3389
服务器:frps.ini
bash
[common]
# 服务端监听地址,0.0.0.0代表此时服务器监听所有发来请求的客户端的IP
bind_addr = 0.0.0.0
bind_port = 7000
dashboard_port = 7500
dashboard_user = admin
dashboard_pwd = 这里写自己的仪表板admin账户的密码
token = 123456
tcp_mux = true
# 日志文件地址
log_file = /root/frp/log/frps.log
# 日志等级,分为trace, debug, info, warn, error
log_level = info
# 日志文件保留天数,我保留5天
log_max_days = 5
访问者:frpc.ini
bash
[common]
server_addr = 服务器的公网IP地址
server_port = 服务器暴露给公网的端口,建议数值尽量大些的非知名端口
# token需要和服务端设置一样的值才能鉴权通过
token = abc123123
# 启用 TLS 协议加密连接
tls_enable = true
[rdp_visitor]
type = stcp
# 角色,server是服务端,visitor表示访问端。默认值是server,所以前面的服务器配置可没这一行
role = visitor
# 要访问的 stcp 代理的名字
server_name = rdp
sk = abcd1234
# 注意sk 要一致,访问者和被访问者的密钥一致,访问者才能和被访问者建立连接
# 绑定本地端口用于访问 远程桌面 服务,这里理解为访问者作为客户端,访问被访问者(目的服务器,不是中间的代理服务器)
bind_addr = 127.0.0.1
bind_port = 9090
个人配置文件
被访问者:frpc.ini
none
[common]
# 这里是客户端配置,server_addr后写本客户端要连接的服务器(服务端)的IP地址,默认是0.0.0.0
server_addr = 服务器ip地址(公网ip地址)
server_port = 7000
authentication_method = token
# 鉴权使用的 token 值,可以自定义
token = abc123123
# mstsc直接输入公网的IP和端口就能远程
[rdp]
type = tcp local_ip = 127.0.0.1 local_port = 3389 # 远程端口 remote_port = 7002
[p2p_rdp]
# 这部分是代理配置,将type改为stcp类型的代理 type = stcp # sk是密钥,可以自定义。服务端和访问端的密钥需要一致,访问端才能访问到服务端 sk = cue121212 # 不需要写远端端口(remote_port),因为代理的是本地的3389端口 local_ip = 127.0.0.1 local_port = 3389 # 启用后该代理和服务端之间的通信内容都会被加密传输 use_encryption = false use_compression = false
[p2p_rdp_xtcp]
type = xtcp sk = cue121212 local_ip = 127.0.0.1 local_port = 3389 # 启用后该代理和服务端之间的通信内容都会被加密传输 use_encryption = false use_compression = false
mstsc表示远程桌面的命令行指令_mstsc_,原来它的意思是Microsoft Terminal Server Connection微软终端服务器连接的缩写。
服务器:frps.ini
bash
[common]
# 服务端监听地址,0.0.0.0代表此时服务器监听所有发来请求的客户端的IP
# 还可以写127.0.0.1
binf_addr = 0.0.0.0
# 服务端端口
bind_port = 7000
bind_udp_port = 7000
authentication_method = token
# 认证Token的值包含字母大小写数字等
token = abc123123
# 可视化面板
# 面板用户名
dashboard_user = admin
# 这里写自己的面板板admin账户的密码
dashboard_pwd = 123456
# 面板端口
dashboard_port = 7500
# 超时时间为秒,如果没有报错,可以不设置
heartbeat_timeout = 90
user_conn_timeout = 60
vhost_http_timeout = 90
tcp_mux = true
# 日志文件地址
log_file = /root/frp/log/frps.log
# 日志等级,分为trace, debug, info, warn, error
log_level = info
# 日志文件保留天数,我保留5天
log_max_days = 5
访问者:frpc.ini
bash
[common]
# 服务器的公网IP地址
server_addr = 服务器ip地址(公网ip地址)
# 服务器暴露给公网的端口,建议数值尽量大些的非知名端口
server_port = 7000
authentication_method = token
# token需要和服务端设置一样的值才能鉴权通过
token = abc123123
[p2p_rdp_visitor]
# 角色:server是服务端,visitor表示访问端。默认值是server,所以前面的服务器配置可没这一行
role = visitor
type = stcp
# 要访问的 stcp 代理的名字
server_name = p2p_rdp
# 注意sk 要一致,访问者和被访问者的密钥一致,访问者才能和被访问者建立连接
sk = cue121212
# 绑定本地端口用于访问 远程桌面 服务,这里理解为访问者作为客户端,访问被访问者(目的服务器,不是中间的代理服务器)
bind_addr = 127.0.0.1
bind_port = 9090
# 启用后该代理和服务端之间的通信内容都会被加密传输
use_encryption = false
use_compression = false
[p2p_rdp_visitor2]
# 角色:server是服务端,visitor表示访问端。默认值是server,所以前面的服务器配置可没这一行
role = visitor
type = xtcp
# 要访问的 stcp 代理的名字
server_name = p2p_rdp_xtcp
# 注意sk 要一致,访问者和被访问者的密钥一致,访问者才能和被访问者建立连接
sk = cue121212
# 绑定本地端口用于访问 远程桌面 服务,这里理解为访问者作为客户端,访问被访问者(目的服务器,不是中间的代理服务器)
bind_addr = 127.0.0.1
bind_port = 9091
# 启用后该代理和服务端之间的通信内容都会被加密传输
use_encryption = false
use_compression = false
win客户端后台运行及开机自启
frpc运行时始终有一个命令行窗口运行在前台,影响美观,我们可以使用一个批处理文件来将其运行在后台,而且可以双击执行,每次打开frpc不用再自己输命令了。
在任何一个目录下新建一个文本文件并将其重命名为“frpc.bat”,编辑,粘贴如下内容并保存。
bat
@echo off
if "%1" == "h" goto begin
mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&
:begin
REM
cd C:\frp
frpc -c frpc.ini
exit
将cd后的路径更改为你的frpc实际存放的目录。
之后直接运行这个 .bat 文件即可启动frpc并隐藏窗口(可在任务管理器中退出)。
至于开机启动,把这个 .bat 文件直接扔进Windows的开机启动文件夹就好了 🙂
至此,客户端配置完成,之后就是你自己根据需要在frpc.ini后追加规则即可。
强烈建议你在使用frp直接测试内网穿透前,先在局域网内测试好相关功能的正常使用,并配置好可能会影响的Windows防火墙等内容,在内网调试通过后再使用frp进行内网穿透测试。
Your written words flow so seamlessly that I swiftly lose track of time while absorbing myself in your blog.
This was such a fantastic read! Thanks for offering your perspectives.
Your commitment and enthusiasm shine through in every paragraph you compose. Truly remarkable.
If individuals can keep match using primary health tools at residence, how onerous can it be?
One of one of the best pieces of coaching equipment for home use is the dumbbell.
It is straightforward to use, out there in various weights, and ideal for low to medium-impact full-body workouts.
Even so, there are a couple of things we can do
to make the most out of sunshine dumbbells.
It’s a strength workout with an emphasis on the upper physique, with
only minor involvement of the decrease body.
I’ve lengthy believed that whole physique workouts are the most effective
and environment friendly method to train. In these
phases we’re systematically getting ready the physique, step by step.
If you want to obtain results, you completely should be working onerous.
It doesn’t matter what program you observe, what workouts you do, how a lot protein you eat… If you’re not working onerous, you’re not going
to be getting the outcomes. We’re taking pictures for 4 exercises per week,
45 minutes per exercise.
Above anything else in the program, I want you to respect
the training volumes. My finish of this cut price is to offer you a 12 week dumbbell exercise plan that
may help you to attain insane outcomes. Your finish of the bargain needs to be that you’ll comply with these 5 steps.
You Will have to use a lighter weight as the beginning of the motion requires finger power more than total grip energy.
It will work on the contraction of your grip power and
flexion of your forearm should you make the most of the bonus on the peak
of the finger curl. When it involves hammer curls vs. bicep curls,
hammer curls have a leg up on bicep curls as they activate both the higher arms and forearms
on the same time. This train may additionally be carried out with higher weights than reverse curls, which makes it
a better choice for these with robust biceps and
weak forearms. You may have seen many push-pull-leg (PPL) dumbbell workout applications on the net, however they aren’t complete and comprise solely
a most of six days of workout. Nonetheless, if you want a complete and efficient 4-week routine, I might help
you.
The advantage of this though is that you’ll be a stronger, better
lifter with balanced power. Your injury risk might
be decrease and your athleticism may have increased. Weight isn’t
every little thing – movement high quality is essential too.
The full-body break up is what I advocate to everyone who has limited time to
exercise because it entails specializing in every
muscle group in each session and supplies decent outcomes over time.
Endomondo newsletter has ideas, workout plans, and
assets that may assist you to in your health journey.
Triple extension is when the ankles, knees, and hips all prolong together to create one powerful compound decrease physique
motion.
You’ve got to essentially want to achieve something right
here to make it well value the effort and the work
rate. If you’re not used to this exercise, apply with a light-weight weight to begin with.
It provides a singular contraction angle of the
muscles, including selection to the exercise.
The dumbbell reverse lunge adds a challenge for the concentration as nicely, as a outcome of the
added component of the step means you have to concentrate on what
you’re doing more. Regardless Of being round for a very long
time, it’s often forgotten about. I like to incorporate it as a outcome of
the rotation helps to keep concentration throughout the lift and force
a new type of contraction in the press.
This is a pure strength endurance exercise here
– we’re going for weight over time. Make positive you choose a challenging weight (you’re well warmed
up by now), keep your type wonderful and drive the dumbbells for a full range of movement.
This is the conditioning phase – the last four weeks of this system
were we red-zone every exercise. We maintain it easy, but we
work actually, actually hard throughout these periods.
It’s the cherry on the cake of a 12 week dumbbell exercise plan. The dumbbell bench press is my favourite
of the standard chest workout routines. I like it as a end result
of the free weight factor forces stability on each side of the body, so is especially good for creating practical balance.
References:
best oral steroid stack (hore-i-steigen.jimmyb.nl)
For intermediate customers, the dosage range can be elevated to 20-30mg per day,
while superior users may opt for 30-50mg per day.
It is essential to evaluate individual tolerance and intently monitor for any potential unwanted facet effects.
It is important to begin with a decrease dosage range, corresponding to 10mg per day, and progressively enhance it to 20mg per day if well-tolerated.
Unethical suppliers have been the cause of users experiencing terrible side effects, by
promoting substances which weren’t steroids. In future Anavar cycles, 20mg could additionally be used from
the 1st week onward; and the size of a cycle may be increased to 8 weeks.
It’s important to note that virilization unwanted aspect effects
are uncommon in girls (who use moderate doses of Anavar).
And even if they did occur, they aren’t permanent in order quickly as you stop taking Anavar; your hormones will balance out and these
male characteristics are likely to disappear. So many ladies
use Anavar at present, which is why certainly one of its nicknames is – the ‘girl steroid’.
This is as a result of no other steroid produces such
mild unwanted effects in females.
Anavar is extensively utilized in managing muscle-wasting ailments,
such as those brought on by HIV/AIDS and certain cancers. These circumstances typically lead to
cachexia, a syndrome marked by extreme muscle atrophy and weight loss.
By promoting an anabolic environment, Anavar helps protect and
rebuild lean physique mass, improving patients’
strength, energy, and skill to carry out day by day duties.
Notably, studies have shown that Anavar elevated lean body mass
by 7.5% in sufferers suffering from disease-related cachexia (Miller, Journal of Acquired Immune Deficiency Syndromes).
It has a novel capability to stimulate lipolysis,
the method of breaking down stored fat to be used for power.
This is particularly useful throughout slicing phases,
when the goal is to scale back physique fat while preserving muscle mass.
Customers of Winstrol and trenbolone can also have some joint ache because of the body’s increased water excretion. Gynecomastia is unlikely on this cycle,
with Winstrol not converting to estrogen and having nearly zero progesterone activity.
Thus, the only risk of gynecomastia forming is trenbolone,
which moderately increases progesterone. However,
we’ve found this to be one of the better cycles for avoiding man-boobs.
With Winstrol being a C17-alpha-alkylated steroid, it’ll trigger liver strain whereas decreasing HDL cholesterol and raising LDL via the stimulation of hepatic lipase.
It’s additionally an costly androgen anyhow, so large
doses are going to burn much more of a gap in your pocket.
For women, it’s a completely completely different animal; it’s
perfect because of its low anabolic and androgenic nature; it’s gentle,
not poisonous, and doesn’t trigger much virilization. Doses are 10-20mg daily,
but extra will cause an increase in muscle growth, but in addition unwanted effects.
Anavar additionally differs from different steroids by way
of androgenic exercise. Steroids like Testosterone and Trenbolone carry a
excessive androgenic ranking, often leading to unwanted aspect effects similar to pimples, hair loss, increased aggression, and different
masculinizing traits. Anavar’s low androgenic index makes these
unwanted effects far much less frequent and is particularly beneficial for individuals sensitive
to androgens, including girls.
Just as with Winstrol, Masteron sometimes leads to a higher
stage of vascularity and a grainer appearance than Anavar does.
80mg to 100mg every day for eight weeks is
a complicated Oxandrolone cycle, but extra so for the superior consumer will be
the addition of a quantity of other steroids in a robust stack.
For PCT, use 50mg/day of Clomid for three weeks,
and you must recuperate rapidly. If Anavar is the main steroid you want
to use, you’re nonetheless virtually definitely going to
stack it with no less than a type of testosterone as a testosterone substitute throughout your cycle.
50mg day by day is the most effective commonplace dose to
steadiness fascinating benefits and unwanted side effects.
Another in style way of taking Anavar among bodybuilders is by taking 50mg
of Anavar per day, alongside with testosterone propionate throughout 8 weeks, and Clomid can be used up to 11 weeks as a part
of PCT. Body-building-anabolics is a web-based pharmacy
that legitimately sells injectable testosterone. [newline]This
is among the trusted websites to purchase real steroids online and have the
medication shipped to either your home or place of work.
Many individuals like to take Anavar by itself,
whereas others wish to stack it with testosterone for serious bulk and cutting.
This anabolic effect is considerably enhanced because Anavar is immune to
metabolism by the enzyme 3-alpha hydroxysteroid dehydrogenase, which often breaks down different anabolic steroids.
This resistance allows a better proportion of the compound to stay lively within the physique,
leading to extra pronounced muscle-building results. Anavar, known scientifically as Oxandrolone, affects skeletal muscle via biochemical interactions that improve protein synthesis.
If unwanted effects become severe or concerning, discontinue
use instantly and seek the assistance of a medical skilled.
Proper analysis, precautions, and cycle planning are essential for a protected Anavar use in bodybuilding.
Joint Aid Surprisingly, some bodybuilders report Anavar
providing joint aid and improved restoration between exercises versus compounding joint stress like some steroids can.
It is essential to note that particular person responses to Anavar may vary, and outcomes depend
upon numerous factors corresponding to dosage, food regimen, exercise routine, and general way of life.
Consulting with healthcare professionals or skilled fitness advisors can present personalized steering and help people
optimize their Anavar utilization for attaining their particular health goals.
All The Time prioritize accountable use, educate
your self about potential risks and precautions, and search
professional guidance to make sure a protected and effective Anavar cycle.
If you may be working out two occasions per week – we suggest starting with 50mg of Anavar per day.
For occasion, if you’re working out four occasions per week – we
suggest starting with 20mg of Anavar per day. If you may be working out greater than 3 times per week, we suggest starting at the lower finish of the dosage range.
For this reason, most men are encouraged to implement a submit
cycle remedy (PCT) plan once all steroid use is complete.
PCT plans ought to include a SERM similar to Nolvadex or Clomid,
and often profit from using HCG. The Anavar regimen presents a useful alternative for individuals looking for optimum
results in their health journey. By understanding the mechanics of Oxandrolone, its advantages, and proper
usage, individuals can harness its potential for lean muscle positive aspects, increased energy, and improved endurance.
References:
Legal steroids review
70918248
References:
steroids for fat loss (images.google.ms)
Thus, by containing totally different esters, it’s each fast-acting and slow-acting.
In real-life phrases, this implies it’ll kick in fast, require frequent injections (every 2 days), and remain in your system for a lengthy time due to the presence of decanoate.
A further advantage of Andriol (oral testosterone undecanoate) is that it bypasses the
liver and is absorbed via the lymphatic system.
Consequently, it is not hepatotoxic and poses no threat
to the liver, in accordance with our LFTs (liver perform tests).
Testosterone undecanoate can be out there as an oral steroid, generally identified as
Andriol (or Testocaps). However, we find it takes a long
time to peak in the bloodstream, with a half-life of 34 days (1).
Thus, customers will have to be very affected person, as it could take a month to kick in.
Muscle-building stacks contain supplements designed to offer you an edge within the health club and help
with recovery and muscle progress afterward. Many contain protein powder to assist your muscles rebuild after a workout.
Stacks with pre-workout formulas typically include a caffeinated drink of some kind to
get you going, but good corporations usually provide a non-stimulant model of those supplements
if you want them. Authorized oral steroids what are the long term effects of steroids excellent for athletes
who want reliable outcomes without risking long-term health.
They supply the strength and efficiency features you’re
after, minus the issues of synthetic hormones or dangerous injections.
Lastly, oral steroids are some of the fastest performing compounds in the world of legal steroids.
Testolone remains to be in growth by the company Radius Health as a therapy for breast most cancers muscle losing and
as a safer alternative to testosterone substitute remedy.
Studies have shown that RAD-140 will increase lean muscle
mass exceptionally nicely by focusing on skeletal tissue androgen receptors.
RAD-140 is believed to be essentially the most androgenic SARM, but despite
this, its androgenic exercise is just around 10% of that
of testosterone.
For bodybuilders only thinking about taking injectable steroids, listed right here are a few
of the greatest injectable cycles (below). Deca Durabolin is often used in bulking cycles because of its anabolic results and lack of androgenicity.
Testosterone’s androgenic results are caused by the 5α-reductase enzyme (converting
testosterone into DHT), which means that customers can experience more
hair loss, thinning, or recession on the scalp.
In the world of anabolic-androgenic steroids (AAS), bodybuilders have the choice of taking orals or injectables.
Hormonal imbalances can lead to a domino impact, impacting varied bodily
capabilities and necessitating a holistic strategy to managing overall health.
CrazyBulk hasn’t forgotten about ladies who’re serious about their
training. It’s best for burning fat with out sacrificing muscle definition. If you’re prepping for a contest or just want to obtain a lean, athletic look, this stack will get the job carried out.
The combination of those products helps you keep your hard-earned muscle
while boosting your metabolism and power ranges to eliminate stubborn fat.
With Win-Max, you’ll notice rapid fat-burning effects, improved muscle retention,
and enhanced efficiency throughout intense exercises.
It’s significantly popular for its capacity to deliver consistent outcomes
whereas helping you achieve the toned, competition-ready physique you’re aiming for.
Whether Or Not you’re prepping for summer, a competition, or simply wish
to construct lean mass while torching fats, Trenorol delivers
the results — without compromising your well being.
One of the biggest considerations with actual Trenbolone
is its harsh facet effect profile, which might embody hormonal
suppression, aggression, insomnia, and more.
Trenorol, nevertheless, incorporates only pure and legal
elements, and is completely free from synthetic hormones or toxic compounds.
Very few supplements can genuinely build and burn at the identical time —
but Trenorol pulls it off thanks to its thermogenic and metabolic-enhancing properties.
It turns your physique right into a fat-incinerating furnace, helping strip away cussed fat
stores (especially around the midsection), all while sustaining anabolic muscle exercise.
So whether you’re utilizing steroids for reaching fitness objectives or for medicinal purposes, you may experience a reduction in natural testosterone manufacturing.
When striving to achieve most positive aspects through the utilization of authorized steroid stacks, it’s essential to contemplate way of life
elements corresponding to common exercise and a healthy diet.
These parts play a critical role in guaranteeing your body’s capability
to optimize the consequences of legal steroid stacks.
It’s important to do not forget that each individual’s response to authorized steroid stacks might vary.
Testosterone’s androgenic effects can complement the fat-burning results of Anavar, albeit with some
short-term water retention. On a per milligram basis, Anavar is technically
6 instances extra anabolic than testosterone (6); nevertheless, in vivo, this does not translate into extra muscle features.
Thus, testosterone can be thought of a complementary stacking
associate, as it’s an androgenic steroid, so DHT ranges will stay
excessive during a cycle. However, our sufferers usually
make the most of post-cycle therapy (PCT) to shorten this time,
which also benefits them psychologically, improving their well-being.
Endogenous testosterone restoration is not guaranteed if an individual abuses the steroid long-term.
This testosterone cycle for beginners, regardless of being cautiously dosed, is likely to produce significant will increase in muscular size
and power.