当前位置: 首页 > 软件库 > 程序开发 > 网络工具包 >

nff-go-nat

授权协议 BSD-3-Clause License
开发语言 Google Go
所属分类 程序开发、 网络工具包
软件类型 开源软件
地区 不详
投 递 者 葛宪
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Network Address Translation example using NFF-Go

What it is

NAT example is a fully functional NAT (network address translation)program written using NFF-Goframework. It has support forIPv4 and IPv6, ARP, ND, ICMP, ICMPv6, DHCP and DHCPv6 protocols withremote control over GRPC.

Building

To build NAT application you need Go tools. Get them fromGolang site. Go should be 1.11.5 or newer.

First, you need DPDK. Usually NAT application uses DPDK from NFF-Goframework. If you want to go this way, check out NFF-Go framework fromNFF-Go framework and run makein it. This will also build DPDK. After that execute source env.shscript to initialize necessary variables to build native code.

If you have DPDK already built in some other location, change env.shscript to point RTE_SDK variable to it so that it can set up othervariables correctly and run source env.sh.

To build NFF-Go NAT application use make in thisrepository. Alternatively you can run go build or go install ./.... Main executable is nff-go-nat and there is also a GRPCcommand line client in client directory.

Testing

Testing requires test framework from NFF-Go repository. Test VMsconfigurations reside there as well. Test image is built using make images target (removed with make clean-images). Test image can bedeployed with make deploy target (removed from target hosts withmake cleanall). Just like it is done in NFF-Go repository.

It is possible to run stability and performance tests with make test-stability and make test-performance.

Performance testing is done using wrk web server benchmark on oneside and test http server on another side.

 相关资料
  • NATS Go 是 NATS 的 Go 客户端。 安装: # Go clientgo get github.com/nats-io/nats# Servers# gnatsdgo get github.com/nats-io/gnatsd# nats-server (Ruby)gem install nats 基础编码使用 nc, _ := nats.Connect(nats.DefaultURL

  • Go!

    Go! 是一个 PHP 5.4 库,让 PHP 支持 AOP 面向方面编程方法,无需 PECL 扩展、Runkit、evals 或者 DI 容器支持。可使用 XDebug 轻松调试。 示例代码: // Aspect/MonitorAspect.phpnamespace Aspect;use Go\Aop\Aspect;use Go\Aop\Intercept\FieldAccess;use Go\

  • 命令go vet是一个用于检查Go语言源码中静态错误的简单工具。与大多数Go命令一样,go vet命令可以接受-n标记和-x标记。-n标记用于只打印流程中执行的命令而不真正执行它们。-n标记也用于打印流程中执行的命令,但不会取消这些命令的执行。示例如下: hc@ubt:~$ go vet -n pkgtool /usr/local/go/pkg/tool/linux_386/vet golang/

  • 命令go fix会把指定代码包的所有Go语言源码文件中的旧版本代码修正为新版本的代码。这里所说的版本即Go语言的版本。代码包的所有Go语言源码文件不包括其子代码包(如果有的话)中的文件。修正操作包括把对旧程序调用的代码更换为对新程序调用的代码、把旧的语法更换为新的语法,等等。 这个工具其实非常有用。在编程语言的升级和演进的过程中,难免会对过时的和不够优秀的语法及标准库进行改进。这样的改进对于编程语

  • Pact Go的版本目前支持Pact v2规范,访问网站开始学习。 Go-Kit例子 Pact Go代码库中有一个详细的Go Kit 例子,介绍如何使用Pact去测试Go Kit微服务。 原生Go实现 还有一个Go版本的Pact(兼容pact v1.1),不需要运行一个守护进程。如果你不需要v2+的匹配以及运行守护进程,可以考虑使用或者为Pact Go贡献。

  • Panic表示的意思就是有些意想不到的错误发生了。通常我们用来表示程序正常运行过程中不应该出现的,或者我们没有处理好的错误。 package main import "os" func main() { // 我们使用panic来检查预期不到的错误 panic("a problem") // Panic的通常使用方法就是如果一个函数 // 返回一个我们不知道怎么处理